nwgorets Report post Posted April 20, 2012 Hello, I am using the following syntax : var myChart = new FusionCharts("FusionCharts/Column3D.swf", "myChartId", "400", "300", 0, 0, "", "noScale", "", 1, 1); with fusioncharts 3.2.2 but instead of redirecting the user when they do not have flash installed it simply renders the chart in javascript. My understanding is that with the detect and redirect flags set it should issue a statement prompting the user to install flash. Thank you for any assistance. Nathan Share this post Link to post Share on other sites
Guest Bindhu Report post Posted April 21, 2012 Hi, Starting FusionCharts v3.2, you can now render the charts on devices where Flash player is not supported (like in iPhone or iPad), is not installed or is disabled using the built-in JavaScript rendering capabilities. The charts rendered by this module are purely using JavaScript and do not need Flash Player at all. FusionCharts gives you the option of either using automatic fallback, wherein the charts figure out the best mode of rendering (either Flash or JavaScript, based on availability of Flash Player), or lets you configure whether to render charts exclusively using JavaScript. For more details on 'JavaScript Charting capabilities', please refer to the link below, http://docs.fusioncharts.com/charts/contents/?Introduction/JSChartingCapabilities.html For more details on 'Using JavaScript (HTML5) renderer', please refer to the link below, http://docs.fusioncharts.com/charts/contents/?FirstChart/UsingPureJS.html Hope this helps ! Share this post Link to post Share on other sites
nwgorets Report post Posted April 25, 2012 So there is no option to NOT render in javascritpt/html 5 and instead prompt the user to install flash? Share this post Link to post Share on other sites
Swarnam Report post Posted April 26, 2012 Hey, In case you wish to render Flash charts only: FusionCharts.setCurrentRenderer('flash'); -- Sets the renderer for all the charts. All the charts that get rendered, after this function call, will abide by this setting. Share this post Link to post Share on other sites
nwgorets Report post Posted April 26, 2012 Thank you, that's exactly what I needed. Share this post Link to post Share on other sites