从 ZedGraph 饼图中删除标签线
我使用 ZedGraph 创建饼图,并使用 AddPieSlice() 方法向其中添加项目,所有重载都需要标签参数。我为此传入 null,因为我不需要段的任何标签。然而,该图仍然从每个段中画出一条线,我认为应该将其连接到不存在的标签。
有什么办法可以去除这些线条吗?
提前致谢!
I am using ZedGraph to create a pie chart, and adding items to it using the AddPieSlice() method, all overloads of which require a label parameter. I pass in null for this as I don't want any labels for the segments. However the graph still draws a line coming out of each segment that I think is supposed to join it to it's non-existent label.
Is there any way to remove these lines?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了为标签分配的任何值(包括 null)之外,您还应该使用
PieItem.LabelType = PieLabelType.None
。例如:
以下是生成的饼图:
以下是一些 ZedGraph 参考:
You should use
PieItem.LabelType = PieLabelType.None
in addition to whatever value (including null) you assign the label.For example:
Here is the resulting pie chart:
Here are some ZedGraph references:
最近遇到了类似的问题。我是这样解决的:
您可以在循环中方便地更改该值。
对不起我的英语
Recently faced a similar problem. And here is how I solved it:
You can change the value conveniently in a loop.
Sorry for my English