fe2c982baf03df0f0261847a99b0785b221ba961
[fw/altos] / altosuilib / AltosUISeries.java
1 /*
2  * Copyright © 2013 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.altosuilib_1;
19
20 import java.io.*;
21 import java.util.ArrayList;
22
23 import java.awt.*;
24 import javax.swing.*;
25 import org.altusmetrum.altoslib_1.*;
26
27 import org.jfree.ui.*;
28 import org.jfree.chart.*;
29 import org.jfree.chart.plot.*;
30 import org.jfree.chart.axis.*;
31 import org.jfree.chart.renderer.*;
32 import org.jfree.chart.renderer.xy.*;
33 import org.jfree.chart.labels.*;
34 import org.jfree.data.xy.*;
35 import org.jfree.data.*;
36
37 public class AltosUISeries extends XYSeries {
38         NumberAxis      axis;
39         String          label;
40         AltosUnits      units;
41         Color           color;
42         XYItemRenderer  renderer;
43         int             fetch;
44         
45         void set_units() {
46                 String  units_string = units.show_units();
47                 axis.setLabel(String.format("%s (%s)", label, units_string));
48
49                 StandardXYToolTipGenerator      ttg;
50
51                 String  example = units.graph_format(4);
52
53                 ttg = new StandardXYToolTipGenerator(String.format("{1}s: {2}%s ({0})", units_string),
54                                                      new java.text.DecimalFormat(example),
55                                                      new java.text.DecimalFormat(example));
56                 renderer.setBaseToolTipGenerator(ttg);
57         }
58
59         void set_enable(boolean enable) {
60                 renderer.setSeriesVisible(0, enable);
61                 axis.setVisible(enable);
62         }
63
64         public void add(AltosUIDataPoint dataPoint) {
65                 super.add(dataPoint.x(), dataPoint.y(fetch));
66         }
67
68         public void set_axis(NumberAxis axis) {
69                 this.axis = axis;
70         }
71
72         public AltosUISeries (String label, int fetch, AltosUnits units, Color color) {
73                 super(label);
74                 this.label = label;
75                 this.fetch = fetch;
76                 this.units = units;
77                 this.color = color;
78
79                 axis = new NumberAxis();
80                 axis.setLabelPaint(color);
81                 axis.setTickLabelPaint(color);
82
83                 renderer = new XYLineAndShapeRenderer(true, false);
84                 renderer.setSeriesPaint(0, color);
85         }
86 }