Example usage for org.jfree.data.time TimeSeries fireSeriesChanged

List of usage examples for org.jfree.data.time TimeSeries fireSeriesChanged

Introduction

In this page you can find the example usage for org.jfree.data.time TimeSeries fireSeriesChanged.

Prototype

public void fireSeriesChanged() 

Source Link

Document

General method for signalling to registered listeners that the series has been changed.

Usage

From source file:com.bdb.weather.display.stripchart.StripChart.java

/**
 * Refresh the plots//  w w w. j av a  2 s  .  c  om
 */
public void refresh() {
    for (TimeSeries timeSeries : (List<TimeSeries>) leftAxisCollection.getSeries()) {
        timeSeries.fireSeriesChanged();
    }
}