データが無い時の文字フォントの指定(setNoDataMessageFont)

広告

データが設定されていない時に表示される文字列のフォントの指定方法を確認します。Plotクラスで用意されている「setNoDataMessageFont」メソッドを使います。

Sets the font used to display the 'no data' message and sends a 
PlotChangeEvent to all registered listeners.

Parameters:
  font - the font (null not permitted).

引数にはFontクラスのオブジェクトを指定します。Fontクラスの詳細な使い方については「Fontクラス」を参照して下さい。

例えば次のように記述します。

JFreeChart chart = ChartFactory.createPieChart(...);      /* 引数は省略 */

Plot plot = chart.getPlot();
plot.setNoDataMessage("データがありません");
plot.setNoDataMessageFont(new Font("MS 明朝", Font.BOLD | Font.ITALIC, 24));

サンプルプログラム

では簡単なサンプルを作成して試してみます。

Test15_1.java

import org.jfree.chart.JFreeChart;
import org.jfree.chart.ChartFactory;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.chart.plot.PlotOrientation;

import javax.swing.JFrame;
import java.awt.BorderLayout;
import org.jfree.chart.ChartPanel;

import org.jfree.chart.plot.Plot;
import java.awt.Color;
import java.awt.Font;

public class Test15_1 extends JFrame{
  public static void main(String[] args) {
    Test15_1 frame = new Test15_1();

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(10, 10, 500, 500);
    frame.setTitle("グラフサンプル");
    frame.setVisible(true);
  }

  Test15_1(){
    JFreeChart chart = 
      ChartFactory.createBarChart("月別売上",
                                  "月",
                                  "売上",
                                  createData(),
                                  PlotOrientation.VERTICAL,
                                  true,
                                  false,
                                  false);

    Plot plot = chart.getPlot();
    plot.setNoDataMessage("データがありません");
    plot.setNoDataMessagePaint(Color.RED);
    plot.setNoDataMessageFont(new Font("MS 明朝", Font.BOLD | Font.ITALIC, 24));

    ChartPanel cpanel = new ChartPanel(chart);
    getContentPane().add(cpanel, BorderLayout.CENTER);
  }

  private DefaultCategoryDataset createData(){
    DefaultCategoryDataset data = new DefaultCategoryDataset();

    return data;
  }
}

上記をコンパイルした後で実行すると次のようにJavaアプリケーションが起動します。

データが無い時の文字フォントの指定(setNoDataMessageFont)

( Written by Tatsuo Ikura )