bigz

Members
  • Content count

    4
  • Joined

  • Last visited

About bigz

  • Rank
    Forum Newbie
  1. Ie8 Win Xp Javascript Error

    Hi Angshu, when is the fix expected to be released?
  2. Hi, Any advance or updates? One more point which might help, we noticed that it happen when we use chrome. In IE & FF it works fine. Thanks
  3. Hi, I am showing you snippets of the FusionChart code. This code worked fine before the upgrade, and when we change the engine to JS it works ok. The behavior is that when we open the site for the first time, the Pie chart shows "Not Data". If i refresh the page, it shows ok. The PHP code itself, looks like this: FC_SetDataFormat("json"); echo renderChart("pages/category/charts/FusionCharts/Pie3D.swf", "data/chart/preview/root$brands.json", "", "previewChart", 700, 400, false, true); The JS code reaching the client, looks like this: <!-- START Code Block for Chart previewChart --><div id="previewChartDiv">Chart</div><script type="text/javascript" ><!-- // Instantiate the Chart if ( FusionCharts("previewChart") && FusionCharts("previewChart").dispose ) FusionCharts("previewChart").dispose(); var chart_previewChart = new FusionCharts( { "swfUrl" : "pages/category/charts/FusionCharts/Pie3D.swf", "width" : "700", "height" : "400", "renderAt" : "previewChartDiv", "dataFormat" : "jsonurl", "id" : "previewChart", "dataSource" : "data/chart/preview/root$brands.json" } ).render();// --></script><!-- END Script Block for Chart previewChart --> The JSON file, looks like this: {"chart":{"showLabels":"1","showValues":"0","legendPosition":"BOTTOM","baseFontSize":"14","legendBorderAlpha":"0","legendShadow":"0","legendIconScale":"1","enableSmartLabels":"1","caption":"Show cases disturbed by Types","formatNumberScale":"0","showPercentInToolTip":"1","showLegend":"0"},"data":[{"label":"Event1","value":4,"link":"electronic"},{"label":"Game","value":2,"link":"games"},{"label":"Home & Garden","value":3,"link":"home__and__garden"}]} Thanks
  4. Hi, I am using 3D pie chart with PHP and want to render it with flash by default.Few days ago, I upgraded fusion charts to the latest version which suppose to fully support javascript.However, since then I get in many cases the error: "No data to display" or blank page when page is loaded and only after refreshing or second call I will see the chart (in most cases). Please note that before the upgrade , I didn't have this issue. When I am forcing it to use javascript :FC_SetRenderer( "javascript" ); it works well.My code looks like that: FC_SetDataFormat("json"); echo renderChart("/pages/category/charts/FusionCharts/Pie3D.swf", $dataURL, "", "previewChart", "100%" , "100%", false, true); Debug info: Info: Chart loaded and initialized.Initial Width: 475Initial Height: 220Scale Mode: noScaleDebug Mode: YesApplication Message Language: ENVersion: 3.2.2(XT)Chart Type: 3D Pie ChartChart Objects: BACKGROUNDCANVASCAPTIONSUBCAPTIONDATALABELSDATAPLOTTOOLTIPLEGEND INFO: Chart registered with external script. DOM Id of chart is previewChartINFO: XML Data provided using dataXML method.XML Data: undefinedINFO: setDataXML method invoked from external script.INFO: XML Data provided using dataXML method.No Data to Display: No data was found in the XML data document provided. Possible cases can be: There isn't any data generated by your system. If your system generates data based on parameters passed to it using dataURL, please make sure dataURL is URL Encoded.You might be using a Single Series Chart .swf file instead of Multi-series .swf file and providing multi-series data or vice-versa. No Data to Display: No set node defined. Thanks in advance!!