2

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.

Eonasdan
  • 7,563
  • 8
  • 55
  • 82
anhhai680
  • 21
  • 1
  • 4

1 Answers1

2

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.

Community
  • 1
  • 1
Graham Clark
  • 12,886
  • 8
  • 50
  • 82