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

ChartDashboardItem.Panes Property

Gets a collection of panes.

Namespace: DevExpress.DashboardCommon

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

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Panes 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