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

DashboardControl.MaximizedDashboardItemName Property

Gets or sets the name of the maximized dashboard item. This is the dependency property.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Dashboard.v20.2.Wpf.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Dashboard, DevExpress.Wpf.Dashboard

Declaration

public string MaximizedDashboardItemName { get; set; }

Property Value

Type Description
String

A String value that is a maximized dashboard item’s name.

Remarks

Use this property to expand the specified dashboard item to the entire dashboard size to examine data in greater detail (maximize).

To maximize an item:

  • End-users can click the Maximize button in the dashboard item caption.
  • In code, set the MaximizedDashboardItemName property to the dashboard item’s name.

To restore an item’s size:

  • End users can click the Restore button in the dashboard item caption.
  • In code, set the MaximizedDashboardItemName property to null.
See Also