c# - How to modify select parts of default chart style? -
I have a LineSeries that I am trying to create with code instead of XAML.
I am using a LineSeries, but I want to remove the markers, and it is just the line. To do this, I have changed the style so that the heights and width are zero:
It works, though the colors change from the original style - these are both yellow / orange. I like they were not! Am I better off implementing new colors or can I modify the default style instead of a new application?
For example, just add them to black:
lineStyle.Setters.Add (new Setter (DataPoint.Background, Brushes.Black));
Comments
Post a Comment