I'm using matplotlib to generate a (vertical) barchart. The problem is my labels are rather long. Is there any way to display them vertically, either in the bar or above it or below it?
Note: The best answer will get a 500 bounty.
|
2
|
I'm using matplotlib to generate a (vertical) barchart. The problem is my labels are rather long. Is there any way to display them vertically, either in the bar or above it or below it? Note: The best answer will get a 500 bounty.
|
||
|
|
|
|
Do you mean something like this:
? In general, to show any text in matplotlib with a vertical orientation, you can add the keyword For further options, you can look at help(matplotlib.pyplot.text) The yticks function plots the ticks on the y axis; I am not sure whether you originally meant this or the ylabel function, but the procedure is alwasy the same, you have to add rotation='vertical' Maybe you can also find useful the options 'verticalalignment' and 'horizontalalignment', which allows you to define how to align the text with respect to the ticks or the other elements. |
||||||||||
|
|
|
My solution doesn't use matplotlib. However, I know gnuplot can do what you are asking. |
||
|
|
|
|
I would suggest looking at the matplotlib gallery. At least two of the examples seem to be relevant:
|
||
|
|