/* * MultiAxisZoomTest.java of project jchart2d, demonstration of a zoom-enabled * chart with multiple axes. * Copyright 2007 - 2011 (C) Achim Westermann, created on 23:59:21. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA* * If you modify or optimize the code in a useful way please let me know. * Achim.Westermann@gmx.de * */ package info.monitorenter.gui.chart.demos; import info.monitorenter.gui.chart.Chart2D; import info.monitorenter.gui.chart.IAxisScalePolicy; import info.monitorenter.gui.chart.ITrace2D; import info.monitorenter.gui.chart.ZoomableChart; import info.monitorenter.gui.chart.axis.AAxis; import info.monitorenter.gui.chart.axis.AxisLinear; import info.monitorenter.gui.chart.pointpainters.PointPainterDisc; import info.monitorenter.gui.chart.traces.Trace2DSimple; import info.monitorenter.gui.chart.views.ChartPanel; import java.awt.BasicStroke; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JButton; import javax.swing.JFrame; /** * Demonstration of a zoom - enabled chart ({@link info.monitorenter.gui.chart.ZoomableChart}). * <p> * * @author Alessio Sambarino (Contributor) * @version $Revision: 1.3 $ */ public class MultiAxisZoomTest extends JFrame { /** * Action adapter for zoomAllButton. * <p> */ class ZoomAllAdapter implements ActionListener { /** The zoomable chart to act upon. */ private ZoomableChart m_zoomableChart; /** * Creates an instance that will reset zooming on the given zoomable chart upon the triggered * action. * <p> * * @param chart * the target to reset zooming on. */ public ZoomAllAdapter(final ZoomableChart chart) { this.m_zoomableChart = chart; } /** * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ public void actionPerformed(final ActionEvent event) { this.m_zoomableChart.zoomAll(); } } /** * Generated <code>serial version UID</code>. * <p> */ private static final long serialVersionUID = -2249660781499017221L; /** * Main startup method. * <p> * * @param args * ignored. */ public static void main(final String[] args) { MultiAxisZoomTest zoomTest = new MultiAxisZoomTest(); // Show the frame zoomTest.setSize(640, 480); zoomTest.setVisible(true); } /** * Defcon. * <p> */ public MultiAxisZoomTest() { super("ZoomTest"); Container c = this.getContentPane(); c.setLayout(new BorderLayout()); // Create a chart ZoomableChart chart = new ZoomableChart(); //create a new axis - for test by anadi AAxis<?> yAxis = new AxisLinear<IAxisScalePolicy>(); chart.addAxisYRight(yAxis); AAxis<?> xAxis = new AxisLinear<IAxisScalePolicy>(); chart.addAxisXBottom(xAxis); // Create ITrace ITrace2D trace = new Trace2DSimple("Trace"); chart.addTrace(trace, xAxis, yAxis); trace.setColor(Color.RED); trace.setStroke(new BasicStroke(2)); // Add all points, as it is static trace.addPoint(0, 0); trace.addPoint(1, 1); trace.addPoint(2, 1); trace.addPoint(3, 2); trace.addPoint(4, 1); trace.addPoint(5, 0); trace = new Trace2DSimple(); chart.addTrace(trace, xAxis, yAxis); trace.addPoint(0, 3); trace.addPoint(1, 2); trace.addPoint(2, 2); trace.addPoint(3, 0); trace.addPoint(4, -1); trace.addPoint(5, 1); trace.setColor(Color.BLUE); // Tool tips and highlighting: Both modes point out the neares trace point to the cursor: chart.setToolTipType(Chart2D.ToolTipType.VALUE_SNAP_TO_TRACEPOINTS); trace.setPointHighlighter(new PointPainterDisc(10)); chart.enablePointHighlighting(true); // Add chart to the pane c.add(new ChartPanel(chart)); // Create the zoomAll button JButton zoomAllButton = new JButton("Zoom All"); zoomAllButton.addActionListener(new ZoomAllAdapter(chart)); // Add zoomAll button to the pane c.add(zoomAllButton, BorderLayout.NORTH); // Enable the termination button: this.addWindowListener(new WindowAdapter() { /** * @see java.awt.event.WindowAdapter#windowClosing(java.awt.event.WindowEvent) */ @Override public void windowClosing(final WindowEvent e) { System.exit(0); } }); } }