It seems I can only have a max of 7 labels displayed on my graph how do I increase that?
self.axes.clear()
vals = self.plotInfo.getYValues()
self.axes.set_xticks = range(len(vals))
self.axes.set_xticklabels(self.plotInfo.getXValues())
self.axes.bar(
left=range(len(vals)),
height=map(float, vals),
width=.2,
align='center',
alpha=0.44,
picker=5)
msg = self.plotInfo.annotation.message
if msg != None:
self.axes.set_title(self.plotInfo.annotation.message)
self.axes.set_xlabel(self.plotInfo.xCol, fontsize=6)
self.axes.set_ylabel(self.plotInfo.yCol, fontsize=6)
self.fig.autofmt_xdate()
self.resetLabels()
Cheers,
lars
<<attachment: image.png>>
------------------------------------------------------------------------------ FREE DOWNLOAD - uberSVN with Social Coding for Subversion. Subversion made easy with a complete admin console. Easy to use, easy to manage, easy to install, easy to extend. Get a Free download of the new open ALM Subversion platform now. http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________ Matplotlib-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-users
