1

I am using System.Windows.Forms.DataVisualization.Charting

and I can create a series with a "triangle" MarkerStyle.

Is there a way to draw it with the point facing down?

I would like to show "up" and "down" type markers

public MarkerStyle MarkerStyle = MarkerStyle.Triangle;
ManInMoon
  • 6,795
  • 15
  • 70
  • 133

1 Answers1

2

One of the options is to draw your own marker. Then set MarkerImage property to use a custom image for it.

MarkerStyle = MarkerStyle.None;
MarkerImage = 'Path to the image
Alex
  • 937
  • 3
  • 20
  • 44
  • 1
    Note that instead of a path is is often preferrable to us a `NamedImage`. See [here](http://stackoverflow.com/questions/36614148/make-chart-legend-represent-two-colors/36619240?s=2|0.1325#36619240) or [here](http://stackoverflow.com/questions/36796524/charting-rectangles-of-arbitrary-dimensions/36798066?s=5|0.0792#36798066) for examples – TaW Jun 01 '16 at 10:05