脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - matplotlib自定义鼠标光标坐标格式的实现

matplotlib自定义鼠标光标坐标格式的实现

2021-08-23 10:37mighty13 Python

这篇文章主要介绍了matplotlib自定义鼠标光标坐标格式的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

matplotlib默认在图像Windows窗口中显示当前鼠标光标所在位置的坐标,格式为x=xx, y=xx

鼠标光标的坐标格式由子图模块Axes中的format_coord函数控制。

通过重写format_coord函数即可实现坐标的自定义格式。

注意:调用format_coord函数的对象是子图对象,常见的错误主要在没有正确的获取当前子图对象。

matplotlib自定义鼠标光标坐标格式的实现

format_coord函数源码

  1. matplotlib.axes.Axes.format_coord
  2.  
  3. def format_coord(self, x, y):
  4. """Return a format string formatting the *x*, *y* coordinates."""
  5. if x is None:
  6. xs = '???'
  7. else:
  8. xs = self.format_xdata(x)
  9. if y is None:
  10. ys = '???'
  11. else:
  12. ys = self.format_ydata(y)
  13. return 'x=%s y=%s' % (xs, ys)

自定义坐标格式实现

  1. import matplotlib.pyplot as plt
  2.  
  3. def format_coord(x, y):
  4. return 'x坐标为%1.4f, y坐标为%1.4f' % (x, y)
  5. #获取当前子图
  6. ax=plt.gca()
  7. ax.format_coord = format_coord
  8. plt.show()

matplotlib自定义鼠标光标坐标格式的实现

到此这篇关于matplotlib自定义鼠标光标坐标格式的实现的文章就介绍到这了,更多相关matplotlib自定义鼠标光标坐标内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/mighty13/article/details/112149799

延伸 · 阅读

精彩推荐