Sign in to follow this  
dleung

Greek Character in FCDataSet series name?

Recommended Posts

Tried adding a greek character using unicode for the FCDataSet object but other ascii characters show up instead.

 

 

 


	FCDataSet datasetCompositeEROVLower = new FCDataSet()

		.withSeriesName("+3σ (EROV Lower Limit)").withColor(16711680)

		.withShowOnTop(false).withAnchorAlpha(0);

 

 

 

Is there something else that I need to be setting?

 

 

 

Thanks

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

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