Sign in to follow this  
nwgorets

Autoinstallredirect Issue.

Recommended Posts

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this