2012-10-10 52 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

回答