我正在使用jFreechart创建这样的折线图(取自演示):
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
);
是否可以将范围和域转换为unicode编码系统?
谢谢!