当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.axes.Axes.can_zoom()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。

matplotlib.axes.Axes.can_zoom()函数

matplotlib库的axiss模块中的Axes.can_zoom()函数用于检查轴是否支持任何缩放框按钮函数。

用法: Axes.can_zoom(self)


参数:此方法不接受任何参数。

返回值:如果支持任何缩放框按钮函数,则此方法返回布尔值True。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.can_zoom()函数:
范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import numpy as np 
  
     
fig, ax = plt.subplots() 
ax.plot([1, 2, 3]) 
  
w = ax.can_zoom() 
  
ax.text(0.45, 2.75, "Value return by function:", 
        fontweight ="bold") 
ax.text(0.9, 2.6, w, fontweight ="bold") 
  
fig.suptitle('matplotlib.axes.Axes.can_zoom() function \ 
Example\n\n', fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
from matplotlib.widgets import Slider, Button, RadioButtons 
     
fig, ax1 = plt.subplots() 
plt.subplots_adjust(bottom = 0.25) 
t = np.arange(0.0, 1.0, 0.001) 
a0 = 5
f0 = 3
delta_f = 5.0
s = a0 * np.sin(2 * np.pi * f0 * t) 
     
ax1.plot(t, s, lw = 2, color = 'green') 
ax1.set_ymargin(0.5) 
  
w = ax1.can_zoom() 
  
ax1.text(0.25, 7.5, "Value return by function:", 
         fontweight ="bold") 
ax1.text(0.47, 5.6, w, fontweight ="bold") 
  
fig.suptitle('matplotlib.axes.Axes.can_zoom() function \ 
Example\n\n', fontweight ="bold") 
  
plt.show()

输出:





注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.can_zoom() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。