You are reading an old version of the documentation (v1.2.1). For the latest version see https://matplotlib.org/stable/
matplotlib

This Page

pylab_examples example code: vertical_ticklabels.pyΒΆ

(Source code, png, hires.png, pdf)

../../_images/vertical_ticklabels.png
#!/usr/bin/env python
from pylab import *

plot([1,2,3,4], [1,4,9,16])
locs, labels = xticks([1,2,3,4], ['Frogs', 'Hogs', 'Bogs', 'Slogs'])
setp(labels, 'rotation', 'vertical')
show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)