I have implemented fusion widgets using javascript in a ruby on rails application.
The graph was working fine in all the browsers except in IE(in windows).
I have tested in linux(with IE installed using wine). Grpah is working. I cant get the chart only in IE & windows. Find my JS code below
var myChart = new FusionCharts("/Charts/AngularGauge.swf", "meterChart", "268", "150", "0", "0");
myChart.setDataXML("#{@meter_txt}");
myChart.setTransparent(true);
myChart.render("meter-snapshot-link");
@meter_txt = "<Chart bgColor='FFFFFF' bgAlpha='0' fillAngle='45' lowerLimitDisplay='Cool ' upperLimitDisplay=' Hot' upperLimit='100' showBorder='0' lowerLimit='0' majorTMNumber='10' majorTMHeight='8' showGaugeBorder='0' gaugeOuterRadius='165' gaugeOriginX='340' gaugeOriginY='240' gaugeInnerRadius='2' formatNumberScale='1' displayValueDistance='30' decimalPrecision='2' tickMarkDecimalPrecision='1' pivotRadius='17' showPivotBorder='1' pivotBorderColor='000000' pivotBorderThickness='5' pivotFillMix='FFFFFF,000000'><colorRange><color minValue='0' maxValue='33' code='81BEF7'/><color minValue='33' maxValue='66' code='F3F781'/><color minValue='66' maxValue='100' code='FA5858'/></colorRange><dials><dial value='50' borderAlpha='0' bgColor='000000' baseWidth='28' topWidth='1' radius='160'/></dials></Chart>"
Please advise