I have used HighCharts extensively in the past, but I am struggling to remember how to create a similar chart with HighStocks:
My dataset is structured like this:
[
{
timestamp: 'Sun Aug 16 2015 10:00:00 GMT+1000 (AEST)',
run: 2,
rest: 3
},
{
timestamp: 'Sun Aug 16 2015 10:01:00 GMT+1000 (AEST)',
run: 4,
rest: 1
},
{
timestamp: 'Sun Aug 16 2015 10:02:00 GMT+1000 (AEST)',
run: 2,
rest: 1
},
]
I want to display a chart that shows two columns (run and rest) for each timestamp using HighStocks. This will allow me to customize the scale using my mouse.
Can someone provide guidance on how to configure the chart accordingly?