Reputation: 25
What do I need to call to change my symbols in a Fastpoint VB.net chart? It auto selects circles squares triangles and diamonds at random. However, I am needing them all to be diamonds and or triangles is this even possible?
Upvotes: -1
Views: 32
Reputation: 25
All one line and you can change the diamond to anything you need it to be. This goes where you are setting up your series.
MyChart.Series("Series Name").MarkerStlye = DataVisualization.Charting.MarkerStyle.Diamond
Upvotes: 0