문제

How would one color y-axis label and tick labels in red?

So for example the "y-label" and values 0 through 40, to be colored in red. sample_image

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()
도움이 되었습니까?

해결책

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

similarly, you can obtain and modify the tick labels:

[i.set_color("red") for i in plt.gca().get_xticklabels()]

다른 팁

The xlabel can be colorized when setting it,

ax.set_xlabel("x-label", color="red")

For setting the ticklabels' color, one may either use tick_params, which sets the ticklabels' as well as the ticks' color

ax.tick_params(axis='x', colors='red')

enter image description here

Alternatively, plt.setp can be used to only set the ticklabels' color, without changing the ticks' color.

plt.setp(ax.get_xticklabels(), color="red")

enter image description here

Note that for changing the properties on the y-axis, one can replace the x with a y in the above.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top