Richard Stanton
unread,Oct 13, 2012, 12:36:31 AM10/13/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pyd...@googlegroups.com
Unless they're deliberately off-center, it looks like the bars in bar charts are plotted a bit too far to the left relative to ticks, labels and grid lines (all of which seem to line up fine).
Here's an example that shows what I mean (you can see it in your browser, or else save to a PDF file and look at that):
df = DataFrame({'A' : [3] * 30, 'B' : range(30)}, index = range(30))
df.plot(kind='bar', stacked='True', grid=True)
draw()