Skip to main content

ChartDashboardItem.Panes Property

Gets a collection of panes.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public ChartPaneCollection Panes { get; }

Property Value

Type Description
ChartPaneCollection

A collection of ChartPane objects that represent panes.

Remarks

Use the Panes property to access the collection of panes. You can add new panes to this collection to create a multi-pane chart.

Chart_MultiplePanes_DataBinding

ChartPane objects contained in the Panes collection are used to access a collection of series plotted on the corresponding pane. To do this, use the ChartPane.Series property.

Each pane has its own Y-axis, so that the corresponding ChartPane object provides the ChartPane.PrimaryAxisY property that allows you to customize the axis settings.

See Also