Skip to main content

ChartInteractivityOptions.TargetDimensions Property

Gets or sets whether interactivity features, such as Master Filtering or drill-down, should be enabled for arguments or series.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v24.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

#Declaration

[DefaultValue(TargetDimensions.Arguments)]
public TargetDimensions TargetDimensions { get; set; }

#Property Value

Type Default Description
TargetDimensions Arguments

A TargetDimensions enumeration member that specifies whether to enable interactivity features, such as Master Filtering or drill-down, for arguments or series.

Available values:

Name Description
Arguments

Arguments are used to perform interactivity actions.

Series

Series are used to perform interactivity actions.

Points

Points are used to perform interactivity actions.

#Property Paths

You can access this nested property as listed below:

Object Type Path to TargetDimensions
ChartDashboardItemBase
.InteractivityOptions .TargetDimensions

#Remarks

In chart and pie dashboard items, each data point corresponds both to an argument and series value. For these items, you can specify whether Master Filtering and drill-down should be performed by the selected argument or series value. To do this, use the TargetDimensions property.

To enable Master Filtering and drill-down, use the DashboardItemInteractivityOptions.MasterFilterMode and DashboardItemInteractivityOptions.IsDrillDownEnabled properties respectively.

See Also