9

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?

acqu13sce
  • 3,789
  • 4
  • 25
  • 32

2 Answers2

14

The list is now maintained on MSDN at: http://msdn.microsoft.com/en-us/library/dd456764.aspx

6

MSChart is really the original Dundas Chart tool. Dundas has a listing of all custom attributes. Since they don't support Dundas Charts anymore, that link may die eventually. As of this date it is still valid.

LordHits
  • 5,054
  • 3
  • 38
  • 51
  • 3
    I had to remove the accepted answer and give it to Phong since as you say the Dundas reference may not last forever. I would expect the Microsoft reference to exist as long as the control does, hence Phong's answer is 'more correct'. – acqu13sce Jul 21 '11 at 01:45
  • Also the Dundas code is slightly different from the ASP.NET Charts, but the documentation is better on the Dundas website – Cerveser Jun 18 '15 at 14:24
  • 1
    That was a great source but now the link indeed has died :-( – TaW May 03 '17 at 07:46
  • Long live [waybackmachine](https://web.archive.org/web/20160710110617/http://support2.dundas.com/OnlineDocumentation/webchart2005/CustomAttributes_All.html) – TaW Feb 11 '19 at 07:42