Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Definitive list of all available CustomProperties for Series and DataPoint in MSChart

Tags:

I am working with the .NET 3.5 MSChart controls and from time to time I find that I need to add custom properties to either the Series or DataPoints.

For example:

Series series = new Series();
series["PieDrawingStyle"] = "SoftEdge";

DataPoint point = new DataPoint();
point["Exploded"] = "true"
point["PieLabelStyle"] = "Disabled";

All of the custom properties I use I have found about from the Web Samples project provided by Microsoft, sometimes from the source given in the samples, sometimes by opening the project up and finding the source manually.

My question is this, is there anywhere I can view the entire list of all available custom properties for reference purposes?