I'm using Microsoft Chart Controls (4.0), and have a line chart with several marker types. So much so, that I'm running out of markertypes. The defaults (square, triangle, circle, etc.) are insufficient.

Is it possible to add custom marker type images? For instance, I need a triangle pointed in the opposite direction.

link|improve this question

What is the exact product name? For example, is it Dundas Chart or Microsoft Chart Controls? – Peter Mortensen Jul 14 '11 at 0:04
Product name is "Microsoft Charts Controls" archive.msdn.microsoft.com/mschart – greggorob64 Jul 14 '11 at 12:02
feedback

1 Answer

You can create a opposite direction triangle image and set the marker image as

// Set an image marker for the third data point in series
Chart1.Series["Default"].Points[2].MarkerImage = "MyReverseTriangleImage.bmp";
Chart1.Series["Default"].Points[2].MarkerImageTransparentColor = Color.White;
link|improve this answer
1  
Is this going to have any significant performance degridation? My chart has upwards of hundreds of thousands of points. – greggorob64 Jul 20 '11 at 17:25
1  
In my opinion that depends on your marker image size. To be sure this won't cause any performance issues, a performance test could be run with your custom image and compare to a baseline test which uses one of the default images. – zero7 Jul 20 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.