如何將y軸標籤和刻度線標籤打成紅色?Matplotlib:着色軸/刻度標籤
因此,例如「y標籤」和值0到40,將被塗成紅色。
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(10)
fig = plt.figure()
ax = plt.subplot(111)
ax.set_ylabel("y-label")
for i in xrange(5):
ax.plot(x, i * x, label='$y = %ix$' % i)
ax.legend()
plt.show()
謝謝!非常感激。 – dimka