如何向 Dundas 图表添加标签?
如何向我的图表添加标签以指示哪个系列是什么。
我的客户不需要图例,他们想要图表区域上的标签。可能用 C# 吗?
How to add labels to my graphs to indicate which series is what.
My clients don't want legends, they want the labels on the chart area. Possibly with C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置标签的最简单方法是将数据绑定到图表。
例如。对于饼图(其他类型可能有所不同):
chart.Series["seriesName"].Points.DataBind(MyDataList, "xFieldPropertyName", "yFieldPropertyName", "Label=xFieldPropertyName{p2},LegendText=legendPropertyName" );
The easiest way to set labels is when you bind your data to the chart.
Eg. for a piechart (may be different on other types):
chart.Series["seriesName"].Points.DataBind(MyDataList, "xFieldPropertyName", "yFieldPropertyName", "Label=xFieldPropertyName{p2},LegendText=legendPropertyName");