Example usage for org.jfree.chart ChartPanel subclass-usage

List of usage examples for org.jfree.chart ChartPanel subclass-usage

Introduction

In this page you can find the example usage for org.jfree.chart ChartPanel subclass-usage.

Usage

From source file userinterface.graph.Graph.java

/**
 * This class represents multiple series on a single unit graph; all series are
 * rendered together by MultiGraphView.
 */
public class Graph extends ChartPanel implements SettingOwner, EntityResolver, Observer, Printable {
    /** Interval for graph updates (in ms). */

From source file com.projity.pm.graphic.chart.TimeChartPanel.java

public class TimeChartPanel extends ChartPanel implements Scrollable, ScaledComponent {
    private static final long serialVersionUID = 2034704461047717965L;

    ChartInfo chartInfo;

    JViewport viewport;

From source file ch.algotrader.client.chart.ChartTab.java

/**
 * @author <a href="mailto:aflury@algotrader.ch">Andy Flury</a>
 */
public class ChartTab extends ChartPanel {

    private static final long serialVersionUID = -1511949341697529944L;

From source file gov.llnl.lc.infiniband.opensm.plugin.gui.chart.PortCounterXYplotPanel.java

public class PortCounterXYplotPanel extends ChartPanel implements CommonLogger {
    private IB_Vertex Vertex;
    private OSM_Port Port;
    private PortCounterName PortCounter;
    private boolean AddExtra;
    private boolean isError;

From source file userinterface.graph.Histogram.java

/**
 * 
 * This class provides the functionality for plotting Histograms in Prism
 * 
 * @author Muhammad Omer Saeed
 */

From source file gov.llnl.lc.infiniband.opensm.plugin.gui.chart.SimpleXY_ChartPanel.java

public class SimpleXY_ChartPanel extends ChartPanel implements CommonLogger {
    private TimeSeries TSeries = new TimeSeries("counts");
    private String FrameTitle;
    private String ChartTitle;
    private OSM_Port Port = null;
    private String NodeName = "unknown";

From source file org.gumtree.vis.awt.JChartPanel.java

/**
 * @author nxi
 *
 */
public abstract class JChartPanel extends ChartPanel implements IPlot {

From source file com.rapidminer.gui.plotter.charts.AbstractChartPanel.java

/**
 * A Swing GUI component for displaying a {@link JFreeChart} object.
 * <P>
 * The panel registers with the chart to receive notification of changes to any component of the
 * chart. The chart is redrawn automatically whenever this notification is received.
 * 

From source file org.bham.aucom.gui.charts.AucomChartPanel.java

/**
 * A Swing GUI component for displaying a {@link JFreeChart} object.
 * <p/>
 * The panel registers with the chart to receive notification of changes to any
 * component of the chart.  The chart is redrawn automatically whenever this
 * notification is received.

From source file gda.plots.SimplePlot.java

/**
 * Provides a simple data line oriented way to use the JFreeChart plotting classes.
 */

public class SimplePlot extends ChartPanel implements Printable, XYDataHandler {