wise

Members
  • Content count

    8
  • Joined

  • Last visited

About wise

  • Rank
    Forum Newbie
  1. Round numbers in IE9

    http://forum.fusioncharts.com/topic/16736-round-numbers-in-ie9/#entry62006 - Here I said: Tried to use 'chart' tag instead of 'graph', to set decimals="0" - the same issue. We have @version 3.6.0 The issue is in setXMLUrl function if it takes time to load the data. I cannot reproduce it on jsfiddle service.
  2. Round numbers in IE9

    Works fine if I put xml data to the chart by setXMLData function. So the issue is in setXMLUrl function if it takes time to load the data.
  3. Round numbers in IE9

    xml: <?xml version="1.0" encoding="UTF-8"?> <graph PYAxisName="No." caption="Statistics" SYAxisName="Rating" shownames="1" showValues="1" showLegend="1" rotateNames="1" formatNumberScale="1" decimals="1" decimalPrecision="1" limitsDecimalPrecision="0" divLineDecimalPrecision="1" formatNumber="1" chartTopMargin="15" numDivLines='0' yAxisMaxValue='1'> <categories> <category name="New" hoverText="Text"/> <category name="Used" hoverText="Text"/> <category name="Collect" hoverText="Text"/> <category name="Service" hoverText="Text"/> <category name="Parts" hoverText="Text"/> <category name="Demo" hoverText="Text"/> </categories> <dataset seriesname="No." showValues="1" decimals="1" decimalPrecision="1" color="19BE07" parentYAxis="P"> <set value=""/> <set value=""/> <set value=""/> <set value=""/> <set value=""/> <set value=""/> </dataset> <dataset seriesname="Rating" showValues="1" decimals="1" decimalPrecision="1" color="FF8000" anchorBorderColor="FF8000" parentYAxis="S" lineThickness="4"> <set value="0.0"/> <set value="0.0"/> <set value="0.0"/> <set value="0.0"/> <set value="0.0"/> <set value="0.0"/> </dataset> </graph>
  4. Round numbers in IE9

    It looks like I have this issue only with 'MSColumn3DLineDY' type. 'Pie3D', 'Column3D', and 'Area2D' work fine Tried to use 'charts' tag instead of 'graph', to set decimals="0" - the same issue. With decimals="0" I have this picture:
  5. Round numbers in IE9

    I create a chart like this: var dbChart = new FusionCharts({type : "MSColumn3DLineDY", id : "homepeoplexml", width :"450", height:"300", debugMode :"1", registerWithJS :"1"}); dbChart.setXMLUrl("xml.action?vars............."); dbChart.render("dbchart"); xml.action returns xml: <?xml version="1.0" encoding="UTF-8"?> <graph PYAxisName="No." caption="Ratings" SYAxisName="Rating" shownames="1" showvalues="1" showLegend="0" rotateNames="1" formatNumberScale="1" decimals="1" decimalPrecision="1" limitsDecimalPrecision="0" divLineDecimalPrecision="1" formatNumber="1" palette="4" numDivLines='0' yAxisMaxValue='1'> <categories> <category name="text" hoverText="text"/> </categories> <dataset seriesname="No." showValues="1" decimals="1" decimalPrecision="1" parentYAxis="P"> <set value="15" /> </dataset> <dataset seriesname="Rating" showValues="1" decimals="1" decimalPrecision="1" color="FF8000" anchorBorderColor="FF8000" parentYAxis="S" lineThickness="4"> <set value="42.33" /> </dataset> </graph> And I have this picture:
  6. Round numbers in IE9

    I downgraded FusionCharts to version 3.2.3-sr3.5347 and fixed the issue with this line: FusionCharts.setCurrentRenderer('flash'); We have a licence for version 3.6 and this doesnt work for it. Unfortunately I cannot share the url.
  7. Round numbers in IE9

    Hi Moonmi, I cannot reproduce this issue on the fiddle. It looks like it depends on the response time. The issue is presented only when I tried to see the report from a server but locally it works fine. When I debug the code and stop on a breakpoint a few seconds then I can see the issue on my local pc. Its not the issue without stopping on a breakpoint. Maybe its something related to caching?
  8. I have a problem with my Сharts in IE9. It works fine in FireFox, Chrome and IE10/11. I have those parameters in my graph: showValues="1" showLegend="1" rotateNames="1" formatNumberScale="1" decimals="1" decimalPrecision="1" limitsDecimalPrecision="0" divLineDecimalPrecision="1" formatNumber="1" chartTopMargin="15" numDivLines='0' yAxisMaxValue='1' FusionCharts version is 3.6.0. Thanks