多光标#

同时在多个图上显示光标。

此示例生成三个分布在两个不同图形上的轴。将光标悬停在一个子图中的数据上时,该数据点的值将显示在所有轴中。

import matplotlib.pyplot as plt
import numpy as np

from matplotlib.widgets import MultiCursor

t = np.arange(0.0, 2.0, 0.01)
s1 = np.sin(2*np.pi*t)
s2 = np.sin(3*np.pi*t)
s3 = np.sin(4*np.pi*t)

fig, (ax1, ax2) = plt.subplots(2, sharex=True)
ax1.plot(t, s1)
ax2.plot(t, s2)
fig, ax3 = plt.subplots()
ax3.plot(t, s3)

multi = MultiCursor(None, (ax1, ax2, ax3), color='r', lw=1)
plt.show()
  • multicursor
  • multicursor

参考

此示例中显示了以下函数、方法、类和模块的用法

脚本的总运行时间:(0 分钟 1.497 秒)

由 Sphinx-Gallery 生成的图库