本文簡要介紹 python 語言中 matplotlib.axes.Axes.tick_params
的用法。
-
更改刻度、刻度標簽和網格線的外觀。
除非
reset
為 True,否則未使用關鍵字參數顯式設置的勾選屬性將保持不變。有關當前樣式設置,請參閱Axis.get_tick_params
。- 參數:
- axis {'x', 'y', 'both'},默認:'both'
-
應用參數的軸。
- which {'major', 'minor', 'both'},默認:'major'
-
應用參數的刻度組。
- reset 布爾值,默認值:假
-
更新前是否將刻度重置為默認值。
- 其他參數:
- direction {'in', 'out', 'inout'}
-
將刻度線放置在軸內部、軸外部或兩者都放置。
- length 浮點數
-
刻度長度以點為單位。
- width 浮點數
-
刻度寬度(以點為單位)。
- color 顏色
-
勾顏色。
- pad 浮點數
-
刻度線和標簽之間的距離(以點為單位)。
- labelsize 浮點數或 str
-
刻度標簽字體大小(以點為單位)或字符串形式(例如,'large')。
- labelcolor 顏色
-
勾選標簽顏色。
- labelfontfamily str
-
勾選標簽字體。
- colors 顏色
-
勾選顏色和標簽顏色。
- zorder 浮點數
-
勾選並標記 zorder。
- bottom, top, left, right bool
-
是否繪製相應的刻度。
- labelbottom, labeltop, labelleft, labelright bool
-
是否繪製相應的刻度標簽。
- labelrotation 浮點數
-
刻度標簽旋轉
- grid_color 顏色
-
網格線顏色。
- grid_alpha 浮點數
-
網格線的透明度:0(透明)到 1(不透明)。
- grid_linewidth 浮點數
-
網格線的寬度(以點為單位)。
- grid_linestyle str
-
任何有效的
Line2D
線型規範。
例子
ax.tick_params(direction='out', length=6, width=2, colors='r', grid_color='r', grid_alpha=0.5)
這將使所有主要刻度為紅色,指向框外,尺寸為 6 點乘 2 點。刻度標簽也將是紅色的。網格線將是紅色和半透明的。
用法
Axes.tick_params(axis='both', **kwargs)
相關用法
- Python matplotlib Axes.tripcolor用法及代碼示例
- Python matplotlib Axes.tricontourf用法及代碼示例
- Python matplotlib Axes.text用法及代碼示例
- Python matplotlib Axes.triplot用法及代碼示例
- Python matplotlib Axes.tricontour用法及代碼示例
- 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.set_prop_cycle用法及代碼示例
- Python matplotlib Axes.axline用法及代碼示例
- Python matplotlib Axes.axvspan用法及代碼示例
- Python matplotlib Axes.contourf用法及代碼示例
- Python matplotlib Axes.locator_params用法及代碼示例
- Python matplotlib Axes.set_ylim用法及代碼示例
- Python matplotlib Axes.loglog用法及代碼示例
- Python matplotlib Axes.boxplot用法及代碼示例
- Python matplotlib Axes.arrow用法及代碼示例
- Python matplotlib Axes.set_xlim用法及代碼示例
注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib.axes.Axes.tick_params。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。