ZedGraph 删除饼图切片?
我正在尝试使用 ZedGraphControl 创建饼图。我可以使用该方法添加饼图切片
zedGraphControl.GraphPane.AddPieSlice (30, Color.Red, Color.White, 45f, .0, "Data");
似乎都没有任何
RemovePieSlice
,但所有方法 或任何删除对象。我是否缺少一些简单的东西,或者这个库不允许删除切片?
I am trying to use the ZedGraphControl to create a pie chart. I am able to add pie slices by using the
zedGraphControl.GraphPane.AddPieSlice (30, Color.Red, Color.White, 45f, .0, "Data");
Method, but there does not seem to be any
RemovePieSlice
Or any remove object at all methods. Am I missing something simple, or does this library not allow for the removal of slices?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AddPieSlice
返回一个PieItem
对象;PieItem
类继承自CurveItem
。这意味着您可以通过CurveList
属性(它是CurveItem
对象的集合)删除PieItem
。要仅删除一个
PieItem
对象:要删除所有
PieItem
对象:AddPieSlice
returns aPieItem
object; thePieItem
class inherits fromCurveItem
. This means you can remove thePieItem
via theCurveList
property (which is a collection ofCurveItem
objects).To remove just one
PieItem
object:To remove all
PieItem
objects: