Skip to main content

BootstrapChart.Panes Property

Defines the Chart control’s panes collection.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public string[] Panes { get; set; }

Property Value

Type Description
String[]

An array of strings specifying the names of chart panes.

Remarks

A Pane is a visual area within a chart that includes all the elements required to display data. If you need to plot several series, you can distribute them between several panes allowing an end-user to easily compare series data. To define panes, use the Panes property. This property provides access to a string array, whose elements correspond to pane names.

Use the BootstrapChartSeriesBase.Pane series property to specify which pane should display the corresponding series. If the property is not set, the series is displayed on the default pane specified by the BootstrapChart.DefaultPane property.

See Also