altosuilib: Remove 'cal_data' param from AltosGraphNew constructor
[fw/altos] / micropeak / MicroGraph.java
1 /*
2  * Copyright © 2012 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.micropeak;
20
21 import java.io.*;
22 import java.util.ArrayList;
23
24 import java.awt.*;
25 import javax.swing.*;
26 import org.altusmetrum.altoslib_11.*;
27 import org.altusmetrum.altosuilib_11.*;
28
29 import org.jfree.ui.*;
30 import org.jfree.chart.*;
31 import org.jfree.chart.plot.*;
32 import org.jfree.chart.axis.*;
33 import org.jfree.chart.renderer.*;
34 import org.jfree.chart.renderer.xy.*;
35 import org.jfree.chart.labels.*;
36 import org.jfree.data.xy.*;
37 import org.jfree.data.*;
38
39 public class MicroGraph extends AltosUIGraph {
40
41         static final private Color height_color = new Color(194,31,31);
42         static final private Color speed_color = new Color(31,194,31);
43         static final private Color accel_color = new Color(31,31,194);
44         static final private Color state_color = new Color(3,3,3);
45
46         public MicroGraph(AltosUIEnable enable) {
47                 super(enable);
48
49                 addSeries("Height", MicroDataPoint.data_height, AltosConvert.height, height_color);
50                 addSeries("Speed", MicroDataPoint.data_speed, AltosConvert.speed, speed_color);
51                 addSeries("Acceleration", MicroDataPoint.data_accel, AltosConvert.accel, accel_color);
52                 addMarker("State", MicroDataPoint.data_state, state_color);
53         }
54 }