📅  最后修改于: 2023-12-03 15:19:24.085000             🧑  作者: Mango
get_navigate_mode()
是 Matplotlib 中 axes.Axes
类的一个方法,用于返回当前 axes 目前所处的交互模式。在 Matplotlib 中有4种交互模式,分别是 Pan 模式、Zoom 模式、Subplot 模式和 Edit 模式。
Axes.get_navigate_mode()
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
plt.show()
mode = ax.get_navigate_mode()
print(mode)
以上代码将绘制一条直线,并返回当前 axes 所处的交互模式。默认情况下,axes 的交互模式为 Pan 模式,因此返回的值应为 'PAN'。
get_navigate_mode()
方法只适用于 axes 对象。