Is there anyway to hide the circular points on line series so that it is a smooth line?
1 Answer, 1 is accepted
0
Ivan Petrov
Telerik team
answered on 29 Nov 2012, 06:05 PM
Hi Colin,
Thank you for writing.
You can use the PointSize property of the LineSeries to control the size of the points. Setting it to (0,0) will stop them from rendering. Here is a code snippet:
LineSeries lineSeries = new LineSeries();
lineSeries.PointSize = SizeF.Empty;
I hope this will be useful. Should you have further questions, I would be glad to help.