ASM #14655 - Time height,series - when swapped to side panel some of time period lost

Change-Id: Idf50864e33cdec86a4e85d483c2859330cbc3b32

Former-commit-id: e3f7c6454e0957c9831d62e827039063b33257e0
This commit is contained in:
Qinglu.Lin 2016-02-04 10:53:05 -05:00
parent adbf370067
commit 77abb15677
2 changed files with 13 additions and 1 deletions

View file

@ -44,6 +44,7 @@ import com.raytheon.viz.core.slice.request.HeightScale;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Jun 28, 2010 bsteffen Initial creation
* Feb 4, 2016 DR 14655 Qinglu Lin Added limitNumberOfFrames().
*
* </pre>
*
@ -155,4 +156,9 @@ public class TimeHeightDescriptor extends XyGraphDescriptor {
return numFrames;
}
@Override
public boolean limitNumberOfFrames(int frameCount) {
return false;
}
}

View file

@ -37,7 +37,8 @@ import com.raytheon.uf.viz.xy.timeseries.graph.TimeSeriesGraph;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Oct 21, 2009 mschenke Initial creation
*
* Feb 4, 2016 DR 14655 Qinglu Lin Added limitNumberOfFrames().
*
* </pre>
*
* @author mschenke
@ -78,4 +79,9 @@ public class TimeSeriesDescriptor extends XyGraphDescriptor {
return numFrames;
}
@Override
public boolean limitNumberOfFrames(int frameCount) {
return false;
}
}