Example usage for org.jfree.data RangeInfo interface-usage

List of usage examples for org.jfree.data RangeInfo interface-usage

Introduction

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

Usage

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

/**
 * Random data for a scatter plot demo.
 * <P>
 * Note that the aim of this class is to create a self-contained data source for demo purposes -
 * it is NOT intended to show how you should go about writing your own datasets.
 *

From source file org.jfree.data.statistics.DefaultMultiValueCategoryDataset.java

/**
 * A category dataset that defines multiple values for each item.
 *
 * @since 1.0.7
 */
public class DefaultMultiValueCategoryDataset extends AbstractDataset

From source file org.jfree.data.statistics.DefaultBoxAndWhiskerXYDataset.java

/**
 * A simple implementation of the {@link BoxAndWhiskerXYDataset} interface.
 * This dataset implementation can hold only one series.
 */
public class DefaultBoxAndWhiskerXYDataset extends AbstractXYDataset implements BoxAndWhiskerXYDataset, RangeInfo {

From source file org.jfree.data.statistics.DefaultStatisticalCategoryDataset.java

/**
 * A convenience class that provides a default implementation of the
 * {@link StatisticalCategoryDataset} interface.
 */
public class DefaultStatisticalCategoryDataset extends AbstractDataset
        implements StatisticalCategoryDataset, RangeInfo, PublicCloneable {

From source file org.jfree.data.statistics.DefaultBoxAndWhiskerCategoryDataset.java

/**
 * A convenience class that provides a default implementation of the
 * {@link BoxAndWhiskerCategoryDataset} interface.
 */
public class DefaultBoxAndWhiskerCategoryDataset extends AbstractDataset
        implements BoxAndWhiskerCategoryDataset, RangeInfo, PublicCloneable {

From source file org.jfree.data.jdbc.JDBCXYDataset.java

/**
 * This class provides an {@link XYDataset} implementation over a database
 * JDBC result set.  The dataset is populated via a call to executeQuery with
 * the string sql query.  The sql query must return at least two columns.
 * The first column will be the x-axis and remaining columns y-axis values.
 * executeQuery can be called a number of times.

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

/**
 * Represents a collection of {@link XYSeries} objects that can be used as a
 * dataset.
 */
public class XYSeriesCollection extends AbstractIntervalXYDataset
        implements IntervalXYDataset, DomainInfo, RangeInfo, VetoableChangeListener, PublicCloneable, Serializable {