anhhai680
anhhai680

Reputation: 21

Highchart doesn't display in IE7/8

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

Answers (1)

Graham Clark
Graham Clark

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

Related Questions