See this jsFiddle example, the data series
series: [{
name: 'John',
data: [5, 3, 4, 7, 2] // the right most part
}, {
name: 'Jane',
data: [2, 2, 3, 2, 1] // the middle part
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5] // the left most part
}]
creates the chart from right to left, I am looking for a way so that the chart can be done from left to right. Thanks!
my data:
[
{
"day": "2009-07-13",
"work": ["11:16:35-12:03:12", "12:32:48-13:26:28", "13:39:09-13:39:12", "13:41:03-13:41:05", "14:18:09-24:00:00"]
}, {
"day": "2009-07-14",
"work": ["00:00:00-07:22:25", "07:22:25-07:22:28", "10:10:04-10:10:31", "10:10:32-10:15:33", "10:18:07-10:21:19", "11:04:49-11:06:15", "11:12:50-11:19:05", "11:19:11-11:19:19", "11:45:50-11:51:42", "11:51:43-11:53:55", "14:03:13-14:13:04", "14:23:55-14:31:28", "14:31:28-14:38:00", "14:38:00-14:49:04", "16:34:56-16:44:33", "16:46:37-16:48:10", "16:48:11-24:00:00"]
}, {
"day": "2009-07-15",
"work": ["00:00:00-08:16:23", "09:57:57-10:15:05"]
}
]
EDIT: Sorry about my English and confusion, another jsFiddle example can better explain what I am talking about. I want to create a chart to represent my engine switch on/off status so that the fed in data for bar chart is from left to right, instead of right to left in the give fiddle. Thanks!