Bug summary
In this tutorial, line.set_color('green') is used to attempt to make the yticks green, but it doesn't work, including in the output shown in the tutorial.
Code for reproduction
# plt.figure creates a matplotlib.figure.Figure instance
fig = plt.figure()
rect = fig.patch # a rectangle instance
rect.set_facecolor('lightgoldenrodyellow')
ax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4])
rect = ax1.patch
rect.set_facecolor('lightslategray')
for label in ax1.xaxis.get_ticklabels():
# label is a Text instance
label.set_color('red')
label.set_rotation(45)
label.set_fontsize(16)
for line in ax1.yaxis.get_ticklines():
# line is a Line2D instance
line.set_color('green')
line.set_markersize(25)
line.set_markeredgewidth(3)
plt.show()
Actual outcome
https://matplotlib.org/stable/_images/sphx_glr_artists_004.png
Expected outcome
Same thing but with the yticks green.
Additional information
No response
Operating system
No response
Matplotlib Version
3.7.1
Matplotlib Backend
No response
Python version
No response
Jupyter version
No response
Installation
None
Bug summary
In this tutorial,
line.set_color('green')is used to attempt to make the yticks green, but it doesn't work, including in the output shown in the tutorial.Code for reproduction
Actual outcome
https://matplotlib.org/stable/_images/sphx_glr_artists_004.png
Expected outcome
Same thing but with the yticks green.
Additional information
No response
Operating system
No response
Matplotlib Version
3.7.1
Matplotlib Backend
No response
Python version
No response
Jupyter version
No response
Installation
None