I'm using the jqplot
plugin to display gauge on an site. This runs perfectly in FF/Safari/Chrome but have to use excanvas
to run in IE8.
The problem is that the gauges are created dynamically, and so values are passed through and then the replot()
function is needed to place the 'needle' in a position on the gauge. When I use the replot()
or redraw()
function in IE however, the axis are rendered but the actual gauge is displayed in the completely wrong place (I can only see the very top corner of the gauge inside the element).
I've read that forcing IE8 to emulate IE7 using
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
can solve this issue, but it hasn't effected the output in any way for me.
If there's anything else I need to include just say.