Example usage for org.jfree.chart.plot XYPlot setNoDataMessageFont

List of usage examples for org.jfree.chart.plot XYPlot setNoDataMessageFont

Introduction

In this page you can find the example usage for org.jfree.chart.plot XYPlot setNoDataMessageFont.

Prototype

public void setNoDataMessageFont(Font font) 

Source Link

Document

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

Usage

From source file:ec.util.chart.swing.JTimeSeriesChart.java

private void onFontSupportChange(XYPlot plot) {
    onFontSupportChange(plot.getRangeAxis());
    plot.setNoDataMessageFont(fontSupport.getNoDataMessageFont());
}