diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-10 13:35:26 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-10 13:35:26 -0700 |
commit | 6ac604d11de44cd824f09e4b467264a2b74be7bd (patch) | |
tree | 3b56f4826826dbb1de1682b99a8c5bb9eed33eb0 /altosui/AltosGraph.java | |
parent | 94d9a2c36fabdf24d6a0b985851e95e4eb181fd9 (diff) |
Altosui: Add flight statistics tab to graph window
Provide basic flight stats alongside the flight graph.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosGraph.java')
-rw-r--r-- | altosui/AltosGraph.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altosui/AltosGraph.java b/altosui/AltosGraph.java index 58c27979..fbcefd61 100644 --- a/altosui/AltosGraph.java +++ b/altosui/AltosGraph.java @@ -13,6 +13,7 @@ abstract class AltosGraph { public String filename; public abstract void addData(AltosDataPoint d); public abstract JFreeChart createChart(); + public String title; public void toPNG() throws java.io.IOException { toPNG(300, 500); } public void toPNG(int width, int height) throws java.io.IOException |