Reputation: 21
I have a problem when I use highchart to display data a on chart. It works fine in FireFox and Chrome but does not display on IE7/8. This my code to display data on chart http://jsfiddle.net/YjpE2/5/ . Please help me resolve my problem, thanks.
Upvotes: 2
Views: 3698
Reputation: 12966
IE is not parsing your dates correctly - if you check the value of newdate
in the loop, it's always NaN
(Not a Number). Check out this question about how to successfully parse dates across all browsers.
The easiest way to get this to work is to change your dates to use /
as the separator instead of -
. This gets your example working in IE.
Upvotes: 2