Uses of Interface
org.jfree.data.general.ValueDataset
-
Packages that use ValueDataset Package Description org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.plot.dial Classes for creating dial plots.org.jfree.data.general Data interfaces and classes. -
-
Uses of ValueDataset in org.jfree.chart.plot
Fields in org.jfree.chart.plot declared as ValueDataset Modifier and Type Field Description private ValueDatasetMeterPlot. datasetThe dataset (contains a single value).private ValueDatasetThermometerPlot. datasetThe dataset for the plot.private ValueDataset[]CompassPlot. datasetsAn array of value datasets.Methods in org.jfree.chart.plot that return ValueDataset Modifier and Type Method Description ValueDatasetMeterPlot. getDataset()Returns the dataset for the plot.ValueDatasetThermometerPlot. getDataset()Returns the dataset for the plot.ValueDataset[]CompassPlot. getDatasets()Returns an array of dataset references for the plot.Methods in org.jfree.chart.plot with parameters of type ValueDataset Modifier and Type Method Description voidCompassPlot. addDataset(ValueDataset dataset)Adds a dataset to the compass.voidCompassPlot. addDataset(ValueDataset dataset, MeterNeedle needle)Adds a dataset to the compass.voidMeterPlot. setDataset(ValueDataset dataset)Sets the dataset for the plot, replacing the existing dataset if there is one, and triggers aPlotChangeEvent.voidThermometerPlot. setDataset(ValueDataset dataset)Sets the dataset for the plot, replacing the existing dataset if there is one, and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot with parameters of type ValueDataset Constructor Description CompassPlot(ValueDataset dataset)Constructs a new compass plot.MeterPlot(ValueDataset dataset)Creates a new plot that displays the value from the supplied dataset.ThermometerPlot(ValueDataset dataset)Creates a new thermometer plot, using default attributes where necessary. -
Uses of ValueDataset in org.jfree.chart.plot.dial
Methods in org.jfree.chart.plot.dial that return ValueDataset Modifier and Type Method Description ValueDatasetDialPlot. getDataset()Returns the primary dataset for the plot.ValueDatasetDialPlot. getDataset(int index)Returns the dataset at the given index.Methods in org.jfree.chart.plot.dial with parameters of type ValueDataset Modifier and Type Method Description voidDialPlot. setDataset(int index, ValueDataset dataset)Sets a dataset for the plot.voidDialPlot. setDataset(ValueDataset dataset)Sets the dataset for the plot, replacing the existing dataset, if there is one, and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot.dial with parameters of type ValueDataset Constructor Description DialPlot(ValueDataset dataset)Creates a new instance ofDialPlot. -
Uses of ValueDataset in org.jfree.data.general
Classes in org.jfree.data.general that implement ValueDataset Modifier and Type Class Description classDefaultValueDatasetA dataset that stores a single value (that is possiblynull).
-