使用 ZedGraph 进行 C# 绘图

发布于 2024-09-28 07:50:34 字数 42 浏览 6 评论 0原文

是否可以选择一个点并将其从图表中删除,以便在没有该点的情况下保存图像?

Is it possible to select a point and simply delete it off the graph so that the image can be saved without that point?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

原野 2024-10-05 07:50:34

您可能可以这样做:
订阅MouseClick事件,找到最近的点并将其删除。

您可以在此处找到如何在 ZedGraph 中订阅事件的示例: http://zedgraph.org/wiki/index.php?title=Edit_Points_by_Dragging_the_Mouse [网站已关闭,链接已损坏]

您将需要使用 FindNearestPoint 方法查找点击点。此方法将返回单击点的 CurveItemID。您只需使用 RemovePoint 方法即可删除它CurveItem 对象的。

请记住,每次更改后,您都需要调用 控件刷新图表。

You probably can do it in this way:
Subscribe for the MouseClick event, find the nearest point and delete it.

Here you can find an example how to subscribe for event in ZedGraph: http://zedgraph.org/wiki/index.php?title=Edit_Points_by_Dragging_the_Mouse [website down, link broken]

You will need to use FindNearestPoint method to find clicked point. this method will return you the CurveItem and ID of the clicked point. You can delete it just by using the RemovePoint method of the CurveItem object.

Just remember, that after every change you need to call Invalidate or Refresh method of your control to refresh the chart.

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