[]
The ErrorBar series helps you see margins of error and standard deviations at a glance. They can be shown as a standard error amount, a percentage, or a standard deviation. You can also set your own values to display the exact error amounts you want.
public class ErrorBar<T> : ExtraSeries<T>
Name | Description |
---|---|
T |
Name | Description |
---|---|
ErrorBar(FlexChartCore<T>) | Creates one ErrorBar<T> instance. |
Name | Description |
---|---|
Direction | Gets or sets a value that specifies the direction of the series. |
EndStyle | Gets or sets a value that specifies the end style of the series. |
ErrorAmount | Gets or sets a value that specifies the error amount of the series. |
ErrorBarStyle | Gets or sets the ErrorBar style. |
ExtraSeriesTypeName | Gets the series name. |
Value | Gets or sets a value that specifies the error value of the series. This property should be work with ErrorAmount property. If ErrorAmount is ErrorAmount.FixedValue, the Value property is a fixed number value. If ErrorAmount is ErrorAmount.Percentage, the Value property is a percentage number value between 0 and 1. If errorAmount is ErrorAmount.Custom, the Value property is an object of minus/plus value or an array of minus/plus value. If ErrorAmount is ErrorAmount.StandardDeviation, the Value property is a percentage number of calculated standard deviation value. |