2 * Copyright © 2013 Keith Packard <keithp@keithp.com>
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.
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.
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.
18 package org.altusmetrum.altosuilib_3;
21 import java.util.ArrayList;
25 import org.altusmetrum.altoslib_5.*;
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.*;
37 public class AltosUIAxis extends NumberAxis {
45 public final static int axis_integer = 1;
46 public final static int axis_include_zero = 2;
48 public final static int axis_default = axis_include_zero;
50 public void set_units() {
51 setLabel(String.format("%s (%s)", label, units.show_units()));
54 public void set_enable(boolean enable) {
58 System.out.printf("too many visible\n");
62 System.out.printf("too few visible\n");
64 setVisible(visible > 0);
69 public void ref(boolean enable) {
73 setVisible(visible > 0);
77 public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
84 setTickLabelPaint(color);
86 if ((flags & axis_integer) != 0)
87 setStandardTickUnits(NumberAxis.createIntegerTickUnits());
88 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
91 public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
92 this(label, units, color, index, axis_default);