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

DataDashboardItem.HiddenMeasures Property

Gets a collection of hidden measures.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v19.1.Core.dll

Declaration

public MeasureCollection HiddenMeasures { get; }

Property Value

Type Description
MeasureCollection

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

Remarks

Add a measure to the HiddenMeasures collection if you need it to be appended to the dashboard item (for instance, you may need to sort dimension values by this measure, or use it to configure the Top N feature) but do not need data from this measure to be displayed.

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

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

See Also