Example usage for org.jfree.data.xy FastXYDataset FastXYDataset

List of usage examples for org.jfree.data.xy FastXYDataset FastXYDataset

Introduction

In this page you can find the example usage for org.jfree.data.xy FastXYDataset FastXYDataset.

Prototype


public FastXYDataset() 

Source Link

Document

Constructs a dataset and with no series.

Usage

From source file:de.uniol.ui.tsv.ui.LineChartDialog.java

/**
 * Creates a new line chart with the given values.
 * /* ww w.  j  a v  a2  s  . c  o m*/
 * @param parent
 * @param title
 * @param xTitle
 * @param yTitle
 * @param tooltipRangeUnits
 * @param tooltipValueUnits
 * @param minRange
 * @param maxRange
 */
public LineChartDialog(Shell parent, String title, String xTitle, String yTitle, String tooltipRangeUnits,
        String tooltipValueUnits, double minRange, double maxRange, boolean useRelativeHourFormat) {
    super(parent, SWT.APPLICATION_MODAL);
    this.title = title;
    this.xTitle = xTitle;
    this.yTitle = yTitle;
    this.tooltipRangeUnits = tooltipRangeUnits;
    this.tooltipValueUnits = tooltipValueUnits;
    this.maxRange = maxRange;
    this.minRange = minRange;
    this.useRelativeHourFormat = useRelativeHourFormat;
    //      xy = new DefaultXYDataset();
    xy = new FastXYDataset();
}