19

1 つの色の y 軸ラベルと目盛りラベルを赤で表示するにはどうすればよいでしょうか?

たとえば、「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()
4

2 に答える 2

29
  label = plt.ylabel("y-label")
  label.set_color("red")

同様に、目盛りラベルを取得して変更できます。

[i.set_color("red") for i in plt.gca().get_xticklabels()]
于 2013-01-04T21:37:21.273 に答える