Defines Pen to draw Error "T" on top of Error Bars.
public ChartPen ErrorPen {get; set;}

Remarks


The ErrorPen property determines what kind of pen will be used for drawing Error "T" on top of Error Bars.

Example


This code changes Error Bar's appearance:

[C#]

Steema.TeeChart.Styles.ErrorBar Series1 = new Steema.TeeChart.Styles.ErrorBar(); 
tChart1.Series.Add(Series1);
Series1.ErrorPen.Visible = true;
Series1.ErrorPen.Width = 2;
Series1.ErrorPen.Color = Color.Blue;
Series1.ErrorPen.Style = DashStyle.Solid;



See Also

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