Skip to main content

BootstrapPolarChartAreaSeries.Point Property

An object defining configuration options for points in line and area series.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapChartPointSettings Point { get; }

Property Value

Type Description
BootstrapChartPointSettings

An object of the BootstrapChartPointSettings type.

Remarks

To specify point options for all line and area series at once, use the properties of the BootstrapChartSeries.Point object defined within the BootstrapChartSeries class.

If you have several series of a single type, you can set point options to the values specific to this series type using the corresponding object (area, line etc.). The values that are set within series-type-specific configuration objects override their corresponding common values.

If you need to set a point option for an individual series, use the Point object within the series object of the BootstrapChartSeriesCollection array. The values that are set individually override their corresponding common values.

See Also