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 エンコーディング システムに変換することは可能ですか?
ありがとうございました!