Example usage for org.jfree.chart.plot Plot subclass-usage

List of usage examples for org.jfree.chart.plot Plot subclass-usage

Introduction

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

Usage

From source file SciTK.PlotXYLine.java

/** Implement a class which uses JFreeChart
 * to make a generic XY line plot. The data points
 * given to this plot are connected with straight lines.
 *
 * @package SciTK
 * @class PlotXYLine

From source file SciTK.PlotXY.java

/** Implement a class which uses JFreeChart
 * to make a generic XY scatter plot.
 *
 * @package SciTK
 * @class PlotXY
 * @brief Generic XY scatter plot

From source file SciTK.PlotXYError.java

/** Implement a class which uses JFreeChart
 * to make a generic XY scatter plot with error bars.
 *
 * @package SciTK
 * @class PlotXYError
 * @brief Generic XY scatter plot with error bars

From source file SciTK.PlotXYStep.java

/** Implement a class which uses JFreeChart
 * to make a generic XY step plot. A step plot is
 * one in which the points are connected via purely
 * vertical and horizontal lines, i.e. appropriate for
 * a spectrum.
 *

From source file edu.ucla.stat.SOCR.chart.gui.HiddenPlot.java

public class HiddenPlot extends Plot {

    public void draw(Graphics2D arg0, Rectangle2D arg1, Point2D arg2, PlotState arg3, PlotRenderingInfo arg4) {
        // TODO Auto-generated method stub

    }

From source file peakml.util.jfreechart.FastSpectrumPlot.java

/**
 * 
 */
public class FastSpectrumPlot extends Plot implements Zoomable, Pannable {
    public static class Data {
        // constructor(s)

From source file SciTK.PlotXYZBlock.java

/** Implement a class which uses JFreeChart
 * to make a generic XYZ plot using "blocks".
 * This is a 2-D representation of a 3-D dataset using
 * a color scale for the third dimension.
 *
 * @package SciTK

From source file peakml.util.jfreechart.FastTimePlot.java

/**
 * 
 */
public class FastTimePlot extends Plot implements Zoomable, Pannable {
    public static class Data {
        public Data(String label, double time[], double values[]) throws RuntimeException {

From source file net.sourceforge.processdash.ui.lib.chart.DiscPlot.java

public class DiscPlot extends Plot implements ValueAxisPlot {

    /** The default interior gap. */
    public static final double DEFAULT_INTERIOR_GAP = 0.03;

    /** The maximum interior gap (currently 40%). */

From source file org.tsho.dmc2.core.chart.AbstractDmcPlot.java

public abstract class AbstractDmcPlot extends Plot implements ValueAxisPlot {

    /** The x data range. */
    protected Range xDataRange;

    /** The y data range. */