Not all ticklabels and data are printed

Is it possible to change the angle of ticks? Right now

    > they are overwriting each other. When I could change the
    > angle to 45? for example there would be enough space.

labels = ax.set_xticklabels(...)
for label in labels:
    label.set_rotation(45)

JDH