I'm trying to draw a monthly bar chart using Flot library. The alignment with the month center is completely wrong with the x axis. I've created a jsfiddle to show the problem.
Intuitively when giving
bars: {
show: true,
fillColor: '#4682b4',
barWidth: 15 * 24 * 60 * 60 * 1000,
align: 'center'
},
I suppose the bar should align with the tick on the center, but is not! The result I'm expecting is the following:

Thanks a lot!