gaude

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by gaude

  1. When I apply a font to VALUE or TRENDVALUES in a linear or angular gauge the value is shown with a border and background even though none is supplied. This is in IE9 Standards mode, using the Flash version of Fusion Widgets 3.2 SR1. Attached is the HTML file demonstrating the issue. Here is my XML: <?xml version="1.0" encoding="utf-8"?> <chart showAboutMenuItem="0" exportEnabled="0" showPrintMenuItem="0" showBorder="0" manageResize="1" legendShadow="0" canvasBgAlpha="0" canvasBGColor="FFFFFF" unescapeLinks="0" bgAlpha="0" bgColor="FFFFFF" caption="" showToolTip="1" showLegend="0" legendPosition="bottom" showValue="1" valueBelowPivot="1" gaugeStartAngle="225" gaugeEndAngle="-45" showTickValues="1" showTickMarks="0" placeTicksInside="1" placeValuesInside="1"> <colorRange> <color code="FFFFFF" minValue="0.0" maxValue="800" alpha="0" borderAlpha="0" /> <color minValue = "800" maxValue="2000" code="00FF00" /> <color code="FFFFFF" minValue="2000.0" maxValue="2000.0" alpha="0" borderAlpha="0" /> </colorRange> <dials> <dial value="5513" /> </dials> <trendpoints> <point startValue="600" color="FF0000" displayValue="Limit" /> </trendpoints> <styles> <definition> <style name="TitleStyle" type="font" isHTML="1" size="8" /> <style name="TextStyle" type="font" size="8" /> <style name="TickValueFont" type="font" size="8" /> <style name="LimitFont" type="font" size="8" /> </definition> <application> <apply toObject="Caption" styles="TitleStyle" /> <apply toObject="ToolTip" styles="TextStyle" /> <apply toObject="TICKVALUES" styles="TickValueFont" /> <apply toObject="LIMITVALUES" styles="LimitFont" /> <apply toObject="VALUE" styles="TextStyle" /> <apply toObject="TRENDVALUES" styles="TextStyle" /> </application> </styles> </chart> gauge-bug.html
  2. I'm looking for a spreadsheet/CSV file of Map entities so that I can load them up into a database for a project that allows users do define thier own maps. I could not find anything like that directly. Regards Emilio
  3. Hi, I'm using FusionCharts XT (v3.2.2) Service Release 3. I've set up my chart to be dynamically resizable and I loaded it into a div which has a parent with display:none as the style. When I click a button I then want to make the div visible. However when I run this on IE9 the browser hangs. Chrome/Safari/Firefox do not hang but they also don't dynamically resize the chart correctly after the button click. I'm restricted to using display:none as this part of the markup is generated by some existing libraries that I cannot change. Any help would be appreciated! ~Emilio ------------------------------------- <!DOCTYPE html> <html> <head> <script src="http://yui.yahooapis.com/2.9.0/build/yahoo/yahoo-min.js"></script> <script src="http://yui.yahooapis.com/2.9.0/build/dom/dom-min.js"></script> <script src="http://yui.yahooapis.com/2.9.0/build/event/event-min.js" ></script> </head> <body> <button type="button" onclick="YAHOO.util.Dom.setStyle('outer', 'display', 'block')">Show</button> <div id="outer" style="width:100%;height:100%;display:none"><!--if you put display:none here fusioncharts hangs on IE 9--> <table style="width:100%;height:100%"> <tbody> <tr><td> <script type="text/javascript" src="Fusion/FusionCharts/Charts/FusionCharts.js"></script> <div id="chart">Fusion Chart</div> <script type="text/javascript"> var fn = function(e){ FusionCharts.setCurrentRenderer("javascript") ; myChart = new FusionCharts( "Fusion/FusionCharts/Charts/Pie3D.swf", "chart3s", "100%", "100%", "0", "1" ); myChart.setXMLData("<chart><set label='A' value='22'/><set label='B' value='27'/></chart>"); myChart.render("chart"); }; YAHOO.util.Event.onContentReady( 'chart' , fn , null , true ); </script> </td></tr> </tbody> </table> </div> </body> </html>
  4. I am trying to show a 3d pie chart using JS but when I run it it shows the same as a 2D pie chart. I have FusionCharts XT (v3.2.2) and ran the demo \FusionCharts\Gallery\Pie_Doughnut\Pie3D2.html in Firefox 11.0 with flash plugin disabled. Instead of showing a 3d version of the chart it shows a 2D version (see attached).