summaryrefslogtreecommitdiff
path: root/altosui/AltosGraphTime.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-01-16 15:19:51 -0800
committerKeith Packard <keithp@keithp.com>2013-01-18 23:00:20 -0800
commitf4fa8a4e93e17f19d15ef108f6e0c81b7a83cc04 (patch)
treeda1260cc55400f0a244efe59cfd7d83d0a63a6a2 /altosui/AltosGraphTime.java
parent4646beb421ab5bec612dfe5e3c57e790b1f41203 (diff)
Add GPS height to the usual plotplot-gps-height
This lets us compare the GPS height data to the barometric height data Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosGraphTime.java')
-rw-r--r--altosui/AltosGraphTime.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/altosui/AltosGraphTime.java b/altosui/AltosGraphTime.java
index 62d516b2..935d59de 100644
--- a/altosui/AltosGraphTime.java
+++ b/altosui/AltosGraphTime.java
@@ -99,9 +99,10 @@ class AltosGraphTime extends AltosGraph {
int dataNum = g.getDataNum(this);
int axisNum = g.getAxisNum(this);
- plot.setDataset(dataNum, dataset);
+ plot.setDataset(dataNum, dataset);
plot.mapDatasetToRangeAxis(dataNum, axisNum);
- plot.setRenderer(dataNum, renderer);
+ plot.setRenderer(dataNum, renderer);
+// renderer.setSeriesVisible(0, false);
}
}