Class ListLineGraphData
- java.lang.Object
-
- org.teamapps.ux.component.timegraph.datapoints.ListLineGraphData
-
- All Implemented Interfaces:
GraphData,LineGraphData
public class ListLineGraphData extends java.lang.Object implements LineGraphData
-
-
Constructor Summary
Constructors Constructor Description ListLineGraphData(java.util.List<LineGraphDataPoint> dataPoints, Interval interval)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LineGraphDataPointgetDataPoint(int index)IntervalgetInterval()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.datapoints.LineGraphData
streamDataPoints, streamX, streamY, toUiGraphData
-
-
-
-
Constructor Detail
-
ListLineGraphData
public ListLineGraphData(java.util.List<LineGraphDataPoint> dataPoints, Interval interval)
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceLineGraphData
-
getX
public double getX(int index)
- Specified by:
getXin interfaceLineGraphData
-
getY
public double getY(int index)
- Specified by:
getYin interfaceLineGraphData
-
getDataPoint
public LineGraphDataPoint getDataPoint(int index)
- Specified by:
getDataPointin interfaceLineGraphData
-
getInterval
public Interval getInterval()
- Specified by:
getIntervalin interfaceGraphData
-
-