“Matplotlib ticksize” Code-Antworten

Ticks Schriftgröße Matplotlib

ax.tick_params(axis='both', which='major', labelsize=10)
Mohsen

Matplotlib ticksize

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)
Real Raccoon

Ähnliche Antworten wie “Matplotlib ticksize”

Fragen ähnlich wie “Matplotlib ticksize”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen