Uses of Class
org.jfree.data.xy.XYDataItem
-
Packages that use XYDataItem Package Description org.jfree.data.xy A package containing theXYDatasetinterface and related classes. -
-
Uses of XYDataItem in org.jfree.data.xy
Fields in org.jfree.data.xy with type parameters of type XYDataItem Modifier and Type Field Description protected List<XYDataItem>XYSeries. dataStorage for the data items in the series.Methods in org.jfree.data.xy that return XYDataItem Modifier and Type Method Description XYDataItemXYSeries. addOrUpdate(double x, double y)Adds or updates an item in the series and sends aSeriesChangeEventto all registered listeners.XYDataItemXYSeries. addOrUpdate(Number x, Number y)Adds or updates an item in the series and sends aSeriesChangeEventto all registered listeners.XYDataItemXYSeries. addOrUpdate(XYDataItem item)Adds or updates an item in the series and sends aSeriesChangeEventto all registered listeners.XYDataItemXYSeries. getDataItem(int index)Returns a copy of the data item with the specified index.XYDataItemXYSeries. remove(int index)Removes the item at the specified index and sends aSeriesChangeEventto all registered listeners.XYDataItemXYSeries. remove(Number x)Removes an item with the specified x-value and sends aSeriesChangeEventto all registered listeners.Methods in org.jfree.data.xy that return types with arguments of type XYDataItem Modifier and Type Method Description List<XYDataItem>XYSeries. getItems()Returns the list of data items for the series (the list containsXYDataItemobjects and is unmodifiable).Methods in org.jfree.data.xy with parameters of type XYDataItem Modifier and Type Method Description voidXYSeries. add(XYDataItem item)Adds a data item to the series and sends aSeriesChangeEventto all registered listeners.voidXYSeries. add(XYDataItem item, boolean notify)Adds a data item to the series and, if requested, sends aSeriesChangeEventto all registered listeners.XYDataItemXYSeries. addOrUpdate(XYDataItem item)Adds or updates an item in the series and sends aSeriesChangeEventto all registered listeners.intXYDataItem. compareTo(XYDataItem other)Returns an integer indicating the order of this object relative to another object.
-