MSChart 中系列和数据点的所有可用自定义属性的最终列表
我正在使用 .NET 3.5 MSChart 控件,有时我发现我需要向系列或数据点添加自定义属性。
例如:
Series series = new Series();
series["PieDrawingStyle"] = "SoftEdge";
DataPoint point = new DataPoint();
point["Exploded"] = "true"
point["PieLabelStyle"] = "Disabled";
我使用的所有自定义属性都是从 Microsoft 提供的 Web Samples 项目中找到的,有时是从示例中给出的源,有时是通过打开项目并手动查找源。
我的问题是,是否可以在任何地方查看所有可用自定义属性的完整列表以供参考?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该列表现在维护在 MSDN 上:
http://msdn.microsoft.com/en-us/library/dd456764.aspx
The list is now maintained on MSDN at:
http://msdn.microsoft.com/en-us/library/dd456764.aspx
MSChart 确实是最初的 Dundas 图表工具。 Dundas 有一个所有自定义属性的列表。由于他们不再支持 Dundas Charts,该链接最终可能会消失。截至目前,该规定仍然有效。
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.