Skip to main content

DataDashboardItem.HiddenDimensions Property

Gets a collection of hidden dimensions.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public DimensionCollection HiddenDimensions { get; }

Property Value

Type Description
DimensionCollection

A collection of Dimension objects appended to the dashboard item but not displayed within it.

Remarks

Add a dimension to the HiddenDimensions collection if you need it to be appended to the dashboard item (for instance, so it appears in the filter criteria) but do not need data from this dimension to be displayed.

You can also add hidden measures to the dashboard item. To do this, use the DataDashboardItem.HiddenMeasures collection.

To learn more about hidden dimensions, see the Hidden Data Items topic.

See Also