Uses of Class
org.jfree.data.time.TimeSeries
Package | Description |
---|---|
org.jfree.chart.demo | |
org.jfree.data |
Data interfaces and classes.
|
org.jfree.data.time |
Interfaces and classes for time-related data.
|
-
Uses of TimeSeries in org.jfree.chart.demo
Methods in org.jfree.chart.demo that return TimeSeries Modifier and Type Method Description static TimeSeries
DemoDatasetFactory. createEURTimeSeries()
Returns a time series of the daily EUR/GBP exchange rates in 2001 (to date), for use in the JFreeChart demonstration application.static TimeSeries
DemoDatasetFactory. createJPYTimeSeries()
Returns a time series of the daily EUR/GBP exchange rates in 2001 (to date), for use in the JFreeChart demonstration application.TimeSeries
DifferenceChartDemo2. createSunriseSeries()
Creates a time series containing sunrise times for London in 2004.TimeSeries
DifferenceChartDemo2. createSunsetSeries()
Creates a time series containing sunset times for London in 2004.TimeSeries
TimeSeriesDemo9. createTimeSeries(int series, int count)
Creates a time series containing random daily data.static TimeSeries
DemoDatasetFactory. createUSDTimeSeries()
Returns a time series of the daily USD/GBP exchange rates in 2001 (to date), for use in the JFreeChart demonstration application. -
Uses of TimeSeries in org.jfree.data
Methods in org.jfree.data that return TimeSeries Modifier and Type Method Description static TimeSeries
MovingAverage. createMovingAverage(TimeSeries source, String name, int periodCount, int skip)
Creates a newTimeSeries
containing moving average values for the given series.static TimeSeries
MovingAverage. createPointMovingAverage(TimeSeries source, String name, int pointCount)
Creates a newTimeSeries
containing moving average values for the given series, calculated by number of points (irrespective of the 'age' of those points).Methods in org.jfree.data with parameters of type TimeSeries Modifier and Type Method Description static TimeSeries
MovingAverage. createMovingAverage(TimeSeries source, String name, int periodCount, int skip)
Creates a newTimeSeries
containing moving average values for the given series.static TimeSeries
MovingAverage. createPointMovingAverage(TimeSeries source, String name, int pointCount)
Creates a newTimeSeries
containing moving average values for the given series, calculated by number of points (irrespective of the 'age' of those points).Constructors in org.jfree.data with parameters of type TimeSeries Constructor Description TimeSeriesTableModel(TimeSeries series)
Constructs a table model for a time series.TimeSeriesTableModel(TimeSeries series, boolean editable)
Creates a table model based on a time series. -
Uses of TimeSeries in org.jfree.data.time
Methods in org.jfree.data.time that return TimeSeries Modifier and Type Method Description TimeSeries
TimeSeries. addAndOrUpdate(TimeSeries series)
Adds or updates data from one series to another.TimeSeries
TimeSeries. createCopy(int start, int end)
Creates a new timeseries by copying a subset of the data in this time series.TimeSeries
TimeSeries. createCopy(RegularTimePeriod start, RegularTimePeriod end)
Creates a new timeseries by copying a subset of the data in this time series.TimeSeries
TimeSeriesCollection. getSeries(int series)
Returns a series.TimeSeries
TimeSeriesCollection. getSeries(String name)
Returns the series with the specified name, ornull
if there is no such series.Methods in org.jfree.data.time with parameters of type TimeSeries Modifier and Type Method Description TimeSeries
TimeSeries. addAndOrUpdate(TimeSeries series)
Adds or updates data from one series to another.void
TimeSeriesCollection. addSeries(TimeSeries series)
Adds a series to the collection.Collection
TimeSeries. getTimePeriodsUniqueToOtherSeries(TimeSeries series)
Returns a collection of time periods in the specified series, but not in this series, and therefore unique to the specified series.void
TimeSeriesCollection. removeSeries(TimeSeries series)
Removes the specified series from the collection.Constructors in org.jfree.data.time with parameters of type TimeSeries Constructor Description TimeSeriesCollection(TimeSeries series)
Constructs a dataset containing a single series (more can be added), tied to the default timezone.TimeSeriesCollection(TimeSeries series, TimeZone zone)
Constructs a dataset containing a single series (more can be added), tied to a specific timezone.