Search the Community
Showing results for tags 'widgets'.
Found 2 results
-
Fusion Widgets not updating in any browser except firefox
dkt@tiwari posted a topic in Using FusionWidgets XT
Why fusion widgets not updating values in any browser except firefox. Question.pdf -
Hello, I have been using Fusion Charts for a long time an have no problem with them but I am now looking at Fusion Widgets and want to try out a horizontal linear gauge. For some reason I cannot get it to display and have searched for a reason but cannot find an answer. Not sure if I have a typo or some fundamental error. Any help here would be appreciated. Here is my code..... <html> <head> <title>My first gauge using FusionWidgets XT</title> <script type="text/javascript" src="fusioncharts/fusioncharts.js"></script> <script type="text/javascript" src="fusioncharts/fusioncharts.widgets.js"></script> <script type="text/javascript" src="fusioncharts/themes/fusioncharts.theme.fint.js"></script> <script type="text/javascript"> FusionCharts.ready(function () { var csatGauge = new FusionCharts({ "type": "hlineargauge", "renderAt": "chart-container", "width": "400", "height": "250", "dataFormat": "XML", "dataSource": "<chart caption="Server CPU Utilization" subcaption="food.hsm.com" captionfontcolor="#000000" subcaptionfontbold="0" bgcolor="#ffffff" showborder="0" lowerlimit="0" upperlimit="100" numbersuffix="%" valueabovepointer="0" showshadow="0" gaugefillmix="{light}" valuebgcolor="#ffffff" valuebgalpha="60" valuefontcolor="#000000" pointerbgcolor="#ffffff" pointerbgalpha="50" basefontcolor="#ffffff"> <colorrange> <color minvalue="0" maxvalue="35" label="Low" code="#1aaf5d" /> <color minvalue="35" maxvalue="70" label="Moderate" code="#f2c500" /> <color minvalue="70" maxvalue="100" label="High" code="#c02d00" /> </colorrange> <pointers> <pointer value="72.5" /> </pointers> </chart>" }); csatGauge.render(); }); </script> </head>