clasen Report post Posted April 16, 2012 I'm tryingto use the Fusion Charts 3.2 library for my iPad app developed. But when thegraph is generated it is 2D rather than 3D My file htmlis: <?xml version="1.0" encoding="iso-8859-1"?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Costototale per pazienti/Anno</title> <link rel="stylesheet" href="Style.css" type="text/css" /> <scriptlanguage="JavaScript" src="FusionCharts.js"></script> <link href="prettify.css" rel="stylesheet"type="text/css" /> <scripttype="text/javascript" src="jquery-1.4.2.min.js"></script> <scripttype="text/javascript" src="prettify.js"></script> <scripttype="text/javascript" src="json2.js"></script> </head> <body> <h3 class="chart-title">Stacked Column 3D Chart</h3> <p> </p> <div id="chartdiv" align="center"> FusionCharts. </div> <scripttype="text/javascript"> FusionCharts.setCurrentRenderer('JavaScript'); var chart = new FusionCharts("StackedColumn3D.swf","ChartId", "560", "400", "0","0"); chart.setXMLUrl("StCol3D1.xml"); chart.render("chartdiv"); </script> <p> </p> <br/> </body> </html> if I deletethis line-code: FusionCharts.setCurrentRenderer('JavaScript'); I can seegraph 3D correctly in browser but this line of code is necessary to run on iPad How can Isolve that problem? thx Share this post Link to post Share on other sites
Swarnam Report post Posted April 16, 2012 Hey, JavaScript Stacked Column 3D charts was included in the latest version (FusionCharts XT(3.2.2) Could you try once using the latest version? www.fusioncharts.com/download/trials Share this post Link to post Share on other sites