本文简要介绍 python 语言中 matplotlib.axis.Axis.get_tick_params
的用法。
-
获取刻度、刻度标签和网格线的外观参数。
3.7 版中的新函数。
- 参数:
- which {'major', 'minor'},默认:'major'
-
检索其参数的刻度组。
- 返回:
- dict
-
添加到轴的刻度元素样式属性。
注意
此方法返回添加到此轴的
new
元素样式的外观参数,如果用户直接修改它们(例如,通过各个刻度对象上的set_*
方法),则可能与当前元素上的值不同。例子
>>> ax.yaxis.set_tick_params(labelsize=30, labelcolor='red', direction='out', which='major') >>> ax.yaxis.get_tick_params(which='major') {'direction': 'out', 'left': True, 'right': False, 'labelleft': True, 'labelright': False, 'gridOn': False, 'labelsize': 30, 'labelcolor': 'red'} >>> ax.yaxis.get_tick_params(which='minor') {'left': True, 'right': False, 'labelleft': True, 'labelright': False, 'gridOn': False}
用法
Axis.get_tick_params(which='major')
相关用法
- Python matplotlib AxisArtist.toggle用法及代码示例
- Python matplotlib AxisArtist.set_axisline_style用法及代码示例
- Python matplotlib AxisArtistHelper用法及代码示例
- Python matplotlib AxislineStyle用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib Axes.inset_axes用法及代码示例
- Python matplotlib Axes.axis用法及代码示例
- Python matplotlib Axes.barbs用法及代码示例
- Python matplotlib Axes.tripcolor用法及代码示例
- Python matplotlib Axes.set_prop_cycle用法及代码示例
- Python matplotlib Axes.axline用法及代码示例
- Python matplotlib Axes.tick_params用法及代码示例
- Python matplotlib Axes.axvspan用法及代码示例
- Python matplotlib Axes3D.plot_trisurf用法及代码示例
- Python matplotlib Axes3D.text2D用法及代码示例
- Python matplotlib Axes.contourf用法及代码示例
- Python matplotlib Axes.tricontourf用法及代码示例
- Python matplotlib Axes.locator_params用法及代码示例
- Python matplotlib Axes.set_ylim用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.axis.Axis.get_tick_params。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。