Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

change text in legend matplotlib

plt.plot(range(10), label='Some very long label')
plt.plot(range(1,11), label='Short label')
L=plt.legend()
L.get_texts()[0].set_text('make it short')
plt.savefig('temp.png')
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #text #legend #matplotlib
ADD COMMENT
Topic
Name
4+1 =