ZedGraph C# 条形图 - 如何检查鼠标单击了哪个条形图?
我正在使用 ZedGraph 在 C# 中绘制绘图。我需要知道鼠标单击了哪个条形(在条形图中)。我怎样才能做到这一点?有什么方法可以按点获取条形图,例如更改条形图的颜色吗?
I am using ZedGraph to draw my plots in C#. I need to know which bar (in bar chart) was clicked by a mouse. How can I do that? Is there any way to get a bar by a point and for example change bar`s color?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
MouseClick
事件并查找您单击的点的 X 和 Y 坐标:注意,我假设我们正在第一个窗格(索引 0)上操作,但如果不是您的情况,那么您'您必须找到单击了哪个窗格(请参阅此示例)。
当您知道 X 和 Y 位置时,您应该能够轻松猜出哪个栏被单击,并利用该信息执行您需要的操作。
Use
MouseClick
event and find the X and Y coordinates of the point where you clicked:Note, that I assumed we are operating on first pane (index 0) but if it is not your case, then you'll have to find which pane was clicked (see this example).
When you have X and Y position you should easily be able to guess which bar was clicked and do whatever you need with that information.