%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
FusionCharts Free - UTF8 日本語 (Japanese) Database Example
<%
/*You need to include the following JS file, if you intend to embed the chart using JavaScript.
Embedding using JavaScripts avoids the "Click to Activate..." issue in Internet Explorer
When you make your own charts, make sure that the path to this JS file is correct. Else, you would get JavaScript errors.
*/
%>
FusionCharts Free UTF8 日本語 (Japanese) Example With Data from Database
<%
/*
In this example, we show how to use UTF characters in chart created with FusionCharts
Here, the XML data for the chart is dynamically generated by PieDataJapanese.jsp.
*/
/*
In this example, FusionCharts uses dataURL method to get the xml from the data in the database.
In order to store and retrieve UTF8 characters from database, in our example, MySQL,
we have to alter the database default charset to UTF8. This can be done using the command:
ALTER DATABASE DEFAULT CHARACTER SET = utf8; on the "factorydb" database.
For this example, we will use another table Japanese_Factory_Master containing the names of the factories
in Japanese language. This table should also be defined to use UTF8 as DEFAULT CHARSET.
The sql script that needs to be executed before running this example is UTFExampleTablesCreation.sql
present in Code/JSP/DB folder.
*/
/*
The pageEncoding and chartSet headers for the page have been set to UTF-8
in the first line of this jsp file.
*/
//Variable to contain dataURL
//NOTE: It's necessary to encode the dataURL if you've added parameters to it
String strDataURL="PieDataJapanese.jsp";
//Create the chart - Pie 3D Chart with dataURL as strDataURL
%>
Unable to see the chart above?