I'm using jFreechart to create a line chart like this (taken from demo) :
final JFreeChart chart = ChartFactory.createLineChart(
"Line Chart Demo 1", // chart title
"Type", // domain axis label
"Value", // range axis label
dataset, // data
PlotOrientation.VERTICAL, // orientation
true, // include legend
true, // tooltips
false // urls
);
Is it possible to convert the range and domain into the unicode encoding system ?
Thank you!