This question is locked. New answers and comments are not allowed.
Hi
I have a multi series scatter plot and I've overlaid it with an 'average' trend line. My question is how do I get rid of the point marks for this line series?
Thanks
I have a multi series scatter plot and I've overlaid it with an 'average' trend line. My question is how do I get rid of the point marks for this line series?
Thanks
4 Answers, 1 is accepted
0
Gavin Christie
Top achievements
Rank 1
answered on 09 Jun 2010, 10:05 AM
I had the same question not long ago and started trying to create new point mark styles etc before I discovered the following one-liner.
lineSeries.ShowPointMarks = false; |
Hope that helps.
0
Stuart
Top achievements
Rank 1
answered on 09 Jun 2010, 10:07 AM
That's great - thanks. Given that my chart is fully defined in XAML is it possible to do this declaratively?
0
Gavin Christie
Top achievements
Rank 1
answered on 09 Jun 2010, 10:13 AM
Ah - fair point, well made :)
I think the examples on this page (http://www.telerik.com/help/wpf/radchart-features-axes-x-axis.html) might be of use.
0
Stuart
Top achievements
Rank 1
answered on 09 Jun 2010, 10:18 AM
Ah - brilliant! Not sure how I missed that. Thanks, works like a charm!