summaryrefslogtreecommitdiff
path: root/altosui/AltosGraphTime.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-12-25 14:20:42 -0800
committerKeith Packard <keithp@keithp.com>2012-12-25 14:20:42 -0800
commit868ef0c9c4b208c02a87180b0eede329369bdc77 (patch)
tree1f20d312d56bac34bad12f287629a2651bbbccf8 /altosui/AltosGraphTime.java
parent669cde8a87d88ceae89e369c1d38b88c9f8198cf (diff)
parent57487e78b90465a21c87cf30deb0aeaba0887332 (diff)
Merge branch 'master' into micropeak-logging
Diffstat (limited to 'altosui/AltosGraphTime.java')
-rw-r--r--altosui/AltosGraphTime.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/altosui/AltosGraphTime.java b/altosui/AltosGraphTime.java
index 75e536c5..62d516b2 100644
--- a/altosui/AltosGraphTime.java
+++ b/altosui/AltosGraphTime.java
@@ -68,11 +68,13 @@ class AltosGraphTime extends AltosGraph {
abstract static class TimeSeries implements Element {
protected XYSeries series;
private String axisName;
+ private String axisUnits;
private Color color;
- public TimeSeries(String axisName, String label, Color color) {
+ public TimeSeries(String axisName, String axisUnits, String label, Color color) {
this.series = new XYSeries(label);
- this.axisName = axisName;
+ this.axisName = String.format("%s (%s)", axisName, axisUnits);
+ this.axisUnits = axisUnits;
this.color = color;
}
@@ -85,8 +87,14 @@ class AltosGraphTime extends AltosGraph {
XYSeriesCollection dataset = new XYSeriesCollection();
dataset.addSeries(this.series);
- XYItemRenderer renderer = new StandardXYItemRenderer();
+ XYItemRenderer renderer = new XYLineAndShapeRenderer(true, false);
renderer.setSeriesPaint(0, color);
+ StandardXYToolTipGenerator tool_tip;
+
+ tool_tip = new StandardXYToolTipGenerator(String.format("{1}s: {2}%s ({0})", axisUnits),
+ new java.text.DecimalFormat("0.00"),
+ new java.text.DecimalFormat("0.00"));
+ renderer.setBaseToolTipGenerator(tool_tip);
int dataNum = g.getDataNum(this);
int axisNum = g.getAxisNum(this);
@@ -192,10 +200,8 @@ class AltosGraphTime extends AltosGraph {
public JFreeChart createChart() {
NumberAxis xAxis = new NumberAxis("Time (s)");
xAxis.setAutoRangeIncludesZero(false);
- XYItemRenderer renderer = new XYLineAndShapeRenderer(true, false);
XYPlot plot = new XYPlot();
plot.setDomainAxis(xAxis);
- plot.setRenderer(renderer);
plot.setOrientation(PlotOrientation.VERTICAL);
if (serial != null && flight != null) {
@@ -205,7 +211,6 @@ class AltosGraphTime extends AltosGraph {
title = callsign + " - " + title;
}
- renderer.setBaseToolTipGenerator(new StandardXYToolTipGenerator());
JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT,
plot, true);
ChartUtilities.applyCurrentTheme(chart);