My issue is that my x-axis tick labels are overlapping, as such I have a similar issue to the picture shown in this question: matplotlib: how to prevent x-axis labels from overlapping each other
The distinction is that my labels are not rotated like they're in this picture. And I'm not using plt but instead:
ax=pylab.figure().add_subplot(111)
I am creating a bar chart and I can set the width of the bars. Can I similarly set the width of the xticklabels?
E.g so the first tick label appears on the x-axis between 0 and 0.5, the second appears between 0.5 and 1.0 etc...