Skip to main content
A newer version of this page is available. .

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.v20.2.Core.dll

NuGet Packages: DevExpress.Dashboard.Core, DevExpress.WindowsDesktop.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.

Property Paths

You can access this nested property as listed below:

Object Type Path to TargetDimensions
ChartDashboardItem
.InteractivityOptions .TargetDimensions
ChartDashboardItemBase
.InteractivityOptions .TargetDimensions
PieDashboardItem
.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