I Faced an issue with flot graphs in IE9, Flot graphs were not generated in IE9 due to the following Javascript Error in "jquery.flot.js" file.

"unable to get value of the property "init_" : object is null or undefined "

Javascript is Breaking at line 553 in jquery.flot.js file.

Comments

Abhinay’s picture

Status: Active » Fixed

I fixed this by editing the following lines in the 'jquery.flot.js' file

I changed

line 539:

if ($.browser.msie)

to

if (($.browser.msie)&& (( parseInt($.browser.version, 10) ) < 9))

and

line:553

if ($.browser.msie)

to

if (($.browser.msie)&& (( parseInt($.browser.version, 10) ) < 9))

This worked perfectly and graphs were now visible in IE9.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.