Answers for "tickz pyplot font size"

1

ticks font size matplotlib

ax.tick_params(axis='both', which='major', labelsize=10)
Posted by: Guest on February-12-2021
0

change ticks font size matplotlib python

from matplotlib import pyplot as plt
from datetime import datetime, timedelta

xvalues = range(10)
yvalues = xvalues

fig,ax = plt.subplots()
plt.plot(xvalues, yvalues)

plt.xticks(fontsize=16)
# sets font size of xticks to 16 (respective of yticks)

plt.grid(True)

plt.show()
Posted by: Guest on June-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language