如何向 Dundas 图表添加标签?

发布于 2024-10-13 05:59:44 字数 70 浏览 6 评论 0原文

如何向我的图表添加标签以指示哪个系列是什么。

我的客户不需要图例,他们想要图表区域上的标签。可能用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空名 2024-10-20 05:59:44

设置标签的最简单方法是将数据绑定到图表。

例如。对于饼图(其他类型可能有所不同):

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");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文