I draw a line series in my chart with PointMarks visible. The style for the PointMarks is DownTriangle.
I am using TeeChart .NET v2009, where I notice that the left border of the triangles is not drawn.
In the attachment of this post, you can see the screenshot of my problem.
My sample code to reproduce this issue:
Code: Select all
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line();
line.Color = System.Drawing.Color.LightBlue;
line.LinePen.Color = System.Drawing.Color.LightBlue;
line.LinePen.Width = 2;
line.Pointer.Visible = true;
line.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.DownTriangle;
m_tchart.Series.Add(line);
Thanks,
Marijke.