Class DoubleArrayLineChartDataPoints
- java.lang.Object
-
- org.teamapps.ux.component.timegraph.DoubleArrayLineChartDataPoints
-
- All Implemented Interfaces:
LineChartDataPoints
public class DoubleArrayLineChartDataPoints extends java.lang.Object implements LineChartDataPoints
-
-
Constructor Summary
Constructors Constructor Description DoubleArrayLineChartDataPoints(double[] x, double[] y)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LineChartDataPointgetDataPoint(int index)doublegetX(int index)doublegetY(int index)intsize()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.teamapps.ux.component.timegraph.LineChartDataPoints
streamDataPoints, streamX, streamY
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceLineChartDataPoints
-
getX
public double getX(int index)
- Specified by:
getXin interfaceLineChartDataPoints
-
getY
public double getY(int index)
- Specified by:
getYin interfaceLineChartDataPoints
-
getDataPoint
public LineChartDataPoint getDataPoint(int index)
- Specified by:
getDataPointin interfaceLineChartDataPoints
-
-