Java org.jfree.data XYSeries fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data XYSeries fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data XYSeries.

The text is from its open source code.

Constructor

XYSeries(final String name)
Creates a new empty series.
XYSeries(final String name, final boolean autoSort, final boolean allowDuplicateXValues)
Constructs a new xy-series that contains no data.

Method

voidadd(final XYDataItem item, final boolean notify)
Adds a data item to the series and, if requested, sends a SeriesChangeEvent to all registered listeners.
voidadd(final double x, final double y)
Adds a data item to the series and sends a SeriesChangeEvent to all registered listeners.
voidadd(final double x, final Number y)
Adds a data item to the series and sends a SeriesChangeEvent to all registered listeners.
voidadd(final Number x, final Number y)
Adds new data to the series and sends a SeriesChangeEvent to all registered listeners.
voidadd(final double x, final double y, final boolean notify)
Adds a data item to the series and, if requested, sends a SeriesChangeEvent to all registered listeners.
voidadd(final double x, final Number y, final boolean notify)
Adds a data item to the series and, if requested, sends a SeriesChangeEvent to all registered listeners.
voidadd(final Number x, final Number y, final boolean notify)
Adds new data to the series and, if requested, sends a SeriesChangeEvent to all registered listeners.
XYDataItemgetDataItem(final int index)
Return the data item with the specified index.
intgetItemCount()
Returns the number of items in the series.
StringgetName()
Returns the name of the series.