我正在使用.NET 3.5 MSChart控件,有时我发现需要为Series或DataPoints添加自定义属性。
例如:
Series series = new Series();
series["PieDrawingStyle"] = "SoftEdge";
DataPoint point = new DataPoint();
point["Exploded"] = "true"
point["PieLabelStyle"] = "Disabled";
我使用的所有自定义属性都是从Microsoft提供的Web Samples项目中找到的,有时是从示例中给出的源,有时通过打开项目并手动查找源。
我的问题是,我可以在任何地方查看所有可用自定义属性的完整列表以供参考吗?
答案 0 :(得分:13)
该列表现在在MSDN上维护: http://msdn.microsoft.com/en-us/library/dd456764.aspx
答案 1 :(得分:6)
MSChart是真正的Dundas Chart工具。 Dundas有一个listing of all custom attributes。由于他们不再支持Dundas Charts,这个链接最终可能会死亡。截至此日期,它仍然有效。