Interface TimeGraphModel
-
- All Known Implementing Classes:
PartitioningTimeGraphModel,StaticPartitioningTimeGraphModel
public interface TimeGraphModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<LineChartDataPoint>>getDataPoints(java.util.Collection<java.lang.String> lineIds, TimeGraphZoomLevel zoomLevel, Interval neededIntervalX)IntervalgetDomainX(java.util.Collection<java.lang.String> lineIds)java.util.List<TimeGraphZoomLevel>getZoomLevels()Event<java.lang.Void>onDataChanged()
-
-
-
Method Detail
-
onDataChanged
Event<java.lang.Void> onDataChanged()
-
getZoomLevels
java.util.List<TimeGraphZoomLevel> getZoomLevels()
-
getDataPoints
java.util.Map<java.lang.String,java.util.List<LineChartDataPoint>> getDataPoints(java.util.Collection<java.lang.String> lineIds, TimeGraphZoomLevel zoomLevel, Interval neededIntervalX)
-
getDomainX
Interval getDomainX(java.util.Collection<java.lang.String> lineIds)
-
-