I’d like to remove the datapoint markers from a LineSeries in my Silverlight chart. The only way i found on the web is to set the VisibilityProperty to Collapse.
//not working in the current SL toolkit release
var collapseDataPointSetter = new Setter(Control.VisibilityProperty, Visibility.Collapsed);
But this isn’t working for the current release of the SL toolkit. How can i remove or hide DataPoint Markers in the current release?
pantarhei,
Use the following chart styles (with referenced templates) to hide the data points. I have included styles for both the LineSeries and the AreaSeries.
Good luck, Jim