Closed (fixed)
Project:
Flot
Version:
6.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Reporter:
Created:
13 Mar 2012 at 07:11 UTC
Updated:
27 Mar 2012 at 07:30 UTC
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
Comment #1
Abhinay commentedI 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.