Just trying to plot some data via highcharts and getting some weird results.
Its 'almost' right but not quite.
I'm plotting price changes over time and have this data coming from a db. I'm turning it into the series of data and then trying to plot.
The strange thing is, highcharts are showing data into the future and plotting November 2015!!!!
I cannot see this in the date anywhere.
Please help!
Here is a snippet from the code:
{
type: 'line',
name: 'Competitor 6',
data: [
[Date.UTC(2015, 10, 22), 91],
]
}
This plots on the Graph as the 22nd November 2015.
Full example file is here: https://www.dropbox.com/s/auhoe00gcsizu1g/stackexchange_example.html?dl=0
Its too long to post in here!
Thanks
Alex