public ErrorWidthUnits ErrorWidthUnits {get; set;}
Remarks
Default: Percent
The ErrorWidthUnits property determines if the ErrorWidth property is expressed either in pixels or in percent of Bar width. By default, the Error "T" width is 100% of Bar width.
Example
This code sets the Error "T" width to 25 % of Bar width:
[C#]
Steema.TeeChart.Styles.ErrorBar Series1 = new Steema.TeeChart.Styles.ErrorBar();
tChart1.Series.Add(Series1);
Series1.ErrorWidthUnits = ErrorWidthUnits.Percent;
Series1.ErrorWidth = 25;
See Also
CustomError Class | CustomError Members | Steema.TeeChart.Styles Namespace