Example usage for org.jfree.data.category CategoryDataset interface-usage

List of usage examples for org.jfree.data.category CategoryDataset interface-usage

Introduction

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

Usage

From source file net.sourceforge.jabm.report.CategoryDatasetFrequencyAdaptor.java

@SuppressWarnings("rawtypes")
public class CategoryDatasetFrequencyAdaptor extends AbstractDataset implements CategoryDataset, Serializable {

    protected Frequency frequency;

    public static final String ROW = "frequency";

From source file net.sourceforge.jabm.view.BarChart.java

@SuppressWarnings("rawtypes")
public class BarChart implements CategoryDataset, ReportWithGUI, Serializable, InitializingBean {

    protected ReportVariables reportVariables;

    protected Map<Object, Number> variableBindings = new LinkedHashMap<Object, Number>();

From source file org.jfree.data.category.SlidingCategoryDataset.java

/**
 * A {@link CategoryDataset} implementation that presents a subset of the
 * categories in an underlying dataset.  The index of the first "visible"
 * category can be modified, which provides a means of "sliding" through
 * the categories in the underlying dataset.
 *

From source file org.jfree.data.category.DefaultCategoryDataset.java

/**
 * A default implementation of the {@link CategoryDataset} interface.
 */
public class DefaultCategoryDataset extends AbstractDataset
        implements CategoryDataset, PublicCloneable, Serializable {