Class ListLineChartDataPoints
- java.lang.Object
-
- org.teamapps.ux.component.timegraph.ListLineChartDataPoints
-
- All Implemented Interfaces:
LineChartDataPoints
public class ListLineChartDataPoints extends java.lang.Object implements LineChartDataPoints
-
-
Constructor Summary
Constructors Constructor Description ListLineChartDataPoints(java.util.List<LineChartDataPoint> dataPoints)
-
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
-
-
-
-
Constructor Detail
-
ListLineChartDataPoints
public ListLineChartDataPoints(java.util.List<LineChartDataPoint> dataPoints)
-
-
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
-
-