Sign in to follow this  
Guest Basundhara Ghosal

translation of messages and menu.

Recommended Posts

hi, seeing the file fusioncharts.js noticed that there is a parameter "lang" would probably be used for translation of the fusion charts, right?

 

 

 

this parameter is a validation came to see if some value, but it puts "EN"

 


       / / Call function

infosoftglobal.FusionCharts = function (swf, id, w, h, debugmode, registerWithJS, c, scaleMode,

lang, detectFlashVersion, autoInstallRedirect)



/ / Application Message Language

lang = lang? lang: 'EN';

this.addVariable ('lang', lang);

 

 

 

I wonder if this feature exists or not. because I would like to translate the message of my application, so I can have the flexibility to show both English and Portuguese in passing parameters "EN" and "BR". Through a. Js file that only has settings for messages. with this could be done even for other languages too.

 

 

 

ps: ever use? PBarLoadingText = more is not helping me the way I need.

 

 

 

sorry for bad english

 

thanks, Marcus Vinicius :cool:

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

Welcome to FusionCharts forum. :)

FusionCharts allows you to use multi-lingual (UTF-8) characters on the charts.

To use multi-lingual characters on the chart, you necessarily need to use UTF-8 encoded XML. More importantly, the XML file/stream does require a BOM stamp to be present as the very first 3 Bytes of the file. Hence, one must remember the two basic thumb rules :

  1. for dataURL method - the XML file/stream should be having the BOM stamp and
  2. for dataXML method - the HTML/application file containing the XML as well as the chart SWF should have the BOM stamp.

Please refer to the link below for further details on the same:-

Ref.- http://www.fusioncharts.com/docs?/SpChar.html

Hope this helps. :)

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