Example usage for org.jfree.data.xy XYZDataset interface-usage

List of usage examples for org.jfree.data.xy XYZDataset interface-usage

Introduction

In this page you can find the example usage for org.jfree.data.xy XYZDataset interface-usage.

Usage

From source file org.jfree.chart.demo.SampleXYZDataset2.java

public class SampleXYZDataset2 extends AbstractXYZDataset implements XYZDataset {

    private static final long serialVersionUID = 1L;

    private double xVal[][] = { { 1.0D, 2D, 3D }, { 4D, 5D, 6D } };
    private double yVal[][] = { { 1.0D, 2D, 3D }, { 4D, 5D, 6D } };

From source file org.spf4j.perf.impl.chart.QuantizedXYZDatasetImpl.java

@Immutable
public final class QuantizedXYZDatasetImpl implements XYZDataset, Serializable {

    private final double[] x;
    private final double[] y;
    private final double[] z;

From source file org.jfree.chart.demo.SampleXYZDataset.java

/**
 * A quick-and-dirty implementation of the {@link XYZDataset interface}.  Hard-coded and not useful
 * beyond the demo.
 *
 */
public class SampleXYZDataset extends AbstractXYZDataset implements XYZDataset {

From source file org.jfree.data.contour.ContourDataset.java

/**
 * The interface through which JFreeChart obtains data in the form of (x, y, z)
 * items - used for XY and XYZ plots.
 *
 * @deprecated This interface is no longer supported (as of version 1.0.4).
 *     If you are creating contour plots, please try to use {@link XYPlot} and

From source file org.jfree.data.xyz.XYZSeriesCollection.java

/**
 * A collection of {@link XYZSeries} objects (implements the {@link XYZDataset}
 * interface).
 * <br><br>
 * NOTE: This class is serializable, but the serialization format is subject 
 * to change in future releases and should not be relied upon for persisting 

From source file org.jfree.data.xy.MatrixSeriesCollection.java

/**
 * Represents a collection of {@link MatrixSeries} that can be used as a
 * dataset.
 *
 * @see org.jfree.data.xy.MatrixSeries
 */

From source file org.jfree.data.xy.DefaultXYZDataset.java

/**
 * A default implementation of the {@link XYZDataset} interface that stores
 * data values in arrays of double primitives.
 *
 * @since 1.0.2
 */