Class XYValueSeries
java.lang.Object
com.codename1.charts.models.XYSeries
com.codename1.charts.models.XYValueSeries
An extension of the XY series which adds a third dimension. It is used for XY
charts like bubble.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidadd(double x, double y) Adds a new value to the series.voidadd(double x, double y, double value) Adds a new value to the series.voidclear()Removes all the values from the series.doubleReturns the maximum value.doubleReturns the minimum value.doublegetValue(int index) Returns the value at the specified index.voidremove(int index) Removes an existing value from the series.Methods inherited from class XYSeries
add, addAnnotation, addAnnotation, clearAnnotations, clearSeriesValues, getAnnotationAt, getAnnotationCount, getAnnotationX, getAnnotationY, getIndexForKey, getItemCount, getMaxX, getMaxY, getMinX, getMinY, getPadding, getRange, getScaleNumber, getTitle, getX, getXYMap, getY, removeAnnotation, setTitle
-
Constructor Details
-
XYValueSeries
Builds a new XY value series.
Parameters
title: the series title.
-
-
Method Details
-
add
public void add(double x, double y, double value) Adds a new value to the series.
Parameters
-
x: the value for the X axis -
y: the value for the Y axis -
value: the value
-
-
add
-
remove
-
clear
-
getValue
public double getValue(int index) Returns the value at the specified index.
Parameters
index: the index
Returns
the value
-
getMinValue
public double getMinValue()Returns the minimum value.
Returns
the minimum value
-
getMaxValue
public double getMaxValue()Returns the maximum value.
Returns
the maximum value
-