Style of line endings.
public LineCap EndCap {get; set;}

Remarks


EndCap determine the end shape of a line.

Example


[C#]

private void tChart1_AfterDraw_1(object sender, Steema.TeeChart.Drawing.Graphics3D g) 
{

     g.Pen.EndCap = System.Drawing.Drawing2D.LineCap.RoundAnchor;

     g.Line(g.Chart.ChartBounds.Left+50,g.Chart.ChartBounds.Top+50,
        g.Chart.ChartBounds.Right-50,g.Chart.ChartBounds.Bottom-50);
    
}

See Also

ChartPen Class | ChartPen Members | Steema.TeeChart.Drawing Namespace