Example usage for org.jfree.chart.title LegendTitle setNotify

List of usage examples for org.jfree.chart.title LegendTitle setNotify

Introduction

In this page you can find the example usage for org.jfree.chart.title LegendTitle setNotify.

Prototype

public void setNotify(boolean flag) 

Source Link

Document

Sets the flag that indicates whether or not the notification mechanism is enabled.

Usage

From source file:jhplot.HChart.java

/**
 * Set font for legend title/*from  w ww . ja v a  2s  . co  m*/
 * 
 * @param f
 */

public void setFontLegent(Font f) {

    LegendTitle lt = chart[N1][N2].getLegend();
    lt.setItemFont(f);
    lt.setNotify(true);
}