Skip to main content

BootstrapPolarChartSeries.ValueErrorBar Property

Configures error bars for numeric axes.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapChartValueErrorBarSettings ValueErrorBar { get; }

Property Value

Type Description
BootstrapChartValueErrorBarSettings

An object of the BootstrapChartValueErrorBarSettings class.

Remarks

Error bars are used on charts to indicate an error or an uncertainty in a reported measurement. They give a general idea of how precise the measurement is.

Error bars can be generated either from concrete or calculated values. To generate one error bar, two values, high and low, are needed. If the data source of your chart provides concrete high and low values, assign the required data source fields to the BootstrapChartValueErrorBarSettings.HighValueField and BootstrapChartValueErrorBarSettings.LowValueField options.

Alternatively, error bar values can be calculated according to an algorithm. In this case, choose the required algorithm using the BootstrapChartValueErrorBarSettings.Type property, and specify the value to be used in calculation using the BootstrapChartValueErrorBarSettings.Value property.

See Also