2012-10-10 57 views
1

我使用的JFreeChart来创建这样的曲线图(从演示截取):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编码系统?

谢谢!

+0

你能具体谈谈在图表上你想要的字符出现? – trashgod

回答