Flot Bar Chart Month Alignment Issue
Solution 1:
Instead of showing just the month, include %d in the time format and you'll see what's happening. Flot makes room for centered bars by subtracting half the bar's width from the axis min. So the bar is centered, but the x-axis ticks aren't what you expect.
I'm investigating what we can do about this; in the meantime you can either set an explicit minimum (which will either cut off the first bar or add undesirable white space to the left of it), or provide an array of ticks explicitly.
You may also want to try 0.7 instead of master, since it likely doesn't exhibit this problem.
I'll update this answer when I've finished examining the code.
Solution 2:
I have a similar issue. See the "nov" bar. It is displaced in the Oct.
A solution is to add 1 hour to the timestamp of 2013-10-01 + (3600 *1000) (3600 sec * 1000 millisec) Then the timeaxis start at correct place at the first of month..
Post a Comment for "Flot Bar Chart Month Alignment Issue"