- Home ›
- JFreeChartを使ったグラフ作成 ›
- 描画領域の設定 ›
- HERE
データが無い時の文字色の指定(setNoDataMessagePaint)
広告
データが設定されていない時に表示される文字列の色の指定方法を確認します。Plotクラスで用意されている「setNoDataMessagePaint」メソッドを使います。
setNoDataMessagePaint public void setNoDataMessagePaint(java.awt.Paint paint)
Sets the paint used to display the 'no data' message and sends a PlotChangeEvent to all registered listeners. Parameters: paint - the paint (null not permitted).
引数にはPaintインターフェースを実装したクラスのオブジェクトを指定します。
Paintインターフェースを実装したクラスとしてはColorクラスやGradientPaintクラスがあります。(詳細は「色属性の設定」などを参照して下さい)。
今回は単に色を指定してみます。色指定の場合は「java.awt.Color」クラスのオブジェクトを使います。(Colorクラスについては「Colorクラス」を参照して下さい)。
例えば次のように記述します。
JFreeChart chart = ChartFactory.createPieChart(...); /* 引数は省略 */ Plot plot = chart.getPlot(); plot.setNoDataMessage("データがありません"); plot.setNoDataMessagePaint(Color.RED);
サンプルプログラム
では簡単なサンプルを作成して試してみます。
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; public class Test14_1 extends JFrame{ public static void main(String[] args) { Test14_1 frame = new Test14_1(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setBounds(10, 10, 500, 500); frame.setTitle("グラフサンプル"); frame.setVisible(true); } Test14_1(){ JFreeChart chart = ChartFactory.createBarChart("月別売上", "月", "売上", createData(), PlotOrientation.VERTICAL, true, false, false); Plot plot = chart.getPlot(); plot.setNoDataMessage("データがありません"); plot.setNoDataMessagePaint(Color.RED); ChartPanel cpanel = new ChartPanel(chart); getContentPane().add(cpanel, BorderLayout.CENTER); } private DefaultCategoryDataset createData(){ DefaultCategoryDataset data = new DefaultCategoryDataset(); return data; } }
上記をコンパイルした後で実行すると次のようにJavaアプリケーションが起動します。
( Written by Tatsuo Ikura )