in order to make things easy to undertand i'm providing the code: http://jsbin.com/otaruq
what we have here is a data set like this: (look the source for more)
"label": "scott",
"data": [[1317427200000, "17017"], [1317513600000, "77260"]]
where the first value is a date in UTC format and second should be score.
now, what i'm trying to do is to have for each date in the y axis the bars representing the score side by side, like below:
3 | # #
2 | # # # # # #
1 | # # # # # # # # #
0 |_________________________________
1 oct 2 oct 3 oct
instead now as you can see the bars are staked each one over the other.
any help would be really appreaciated, thank's
