Skip to main content

DashboardItemState.DrillDownValues Property

Gets or sets values for the drill-down hierarchy.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public List<object> DrillDownValues { get; set; }

Property Value

Type Description
List<Object>

A list of objects that specify values for the drill-down hierarchy.

Remarks

The following code snippet shows how to specify a drill-down value for a Grid dashboard item and add it to the entire dashboard state (DashboardState)

public DashboardState CreateDashboardState() {
  DashboardState state = new DashboardState();
    state.Items.Add(new DashboardItemState("gridDashboardItem1") {
      DrillDownValues = new List<object>() { "Seafood" }
  });
  return state;
}  

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DrillDownValues property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also