Page 1 of 1

PointerStyle for Fastline

Posted: Wed Dec 03, 2008 10:00 am
by 9642017
Dear Support !

Is it possible to paint a circle for each point when a FastLine is used ???

If using a Line the following is possible:

Steema.TeeChart.Styles.Line mainline=new Steema.TeeChart.Styles.Line();

mainline.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle;
mainline.Pointer.Visible = true;

How can I paint a Circle for each point when a fastline is used, as the FastLine-Class has no Pointer object.

Regards,

Robert.

Posted: Wed Dec 03, 2008 10:04 am
by narcis
Hi Robert,

As you already said FastLine has no pointer for performance purposes. If you want a 2D line with a pointer you should use Line series setting the chart to 2D an enabling its pointer as in the code you posted.