matplotlib 绘图区域的图形坐标
如何在图形坐标或像素坐标中找到轴绘图区域的位置?
我实际上正在尝试捕获图下方 x 轴区域上的点击和运动事件。所以我收到一个事件并尝试测试它的 y 坐标是否低于绘图区域。我认为这很简单,但我似乎无法通过搜索找到任何东西。
How do you find the location of the plot area of an axes in figure coordinates or pixel coordinates?
I'm actually trying to capture click and motion events on the x axis area below the plot. So I'm getting an event and trying to test if it's y coordinate is below the plot area. I would think this is simple, but I can't seem to find anything by searching.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决 - 找到它 - 不容易找到 -axes.bbox.bounds 边界以像素为单位,与事件相同。
SOLVED - found it - wasn't easy to find - axes.bbox.bounds bounds is in pixels, same as the event.