Determines the horizontal size of the Error "T".
public Int32 ErrorWidth {get; set;}

Remarks


Default: 100

The ErrorWidth property determines the horizontal size of the Error "T". Size is expressed either in pixels or in percent of Bar width depending on ErrorWidthUnits property. By default, Error's "T" width is 100% of Bar width.

Example


This code sets the Error "T" width to 34 pixels:

[C#]

Steema.TeeChart.Styles.ErrorBar Series1 = new Steema.TeeChart.Styles.ErrorBar(); 
tChart1.Series.Add(Series1);
Series1.ErrorWidthUnits = ErrorWidthUnits.Pixels;
Series1.ErrorWidth = 34;

See Also

CustomError Class | CustomError Members | Steema.TeeChart.Styles Namespace