📌  相关文章
📜  刻度标签大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:38.299000             🧑  作者: Mango

代码示例1
import matplotlib.pyplot as plt
# We prepare the plot  
fig, ax = plt.subplots()

# We change the fontsize of minor ticks label 
ax.tick_params(axis='both', which='major', labelsize=10)
ax.tick_params(axis='both', which='minor', labelsize=8)