Uses of Interface
org.jfree.chart3d.data.Values3D
Packages that use Values3D
Package
Description
Core data structures used as the building blocks for datasets in Orson
Charts.
Datasets that can be used by the
CategoryPlot3D
class.Renderers that can be used with the
CategoryPlot3D
class.-
Uses of Values3D in org.jfree.chart3d.data
Subinterfaces of Values3D in org.jfree.chart3d.dataModifier and TypeInterfaceDescriptioninterface
KeyedValues3D<S extends Comparable<S>,
R extends Comparable<R>, C extends Comparable<C>, T> A three dimensional cube of data values where each value is uniquely identified by three keys (theseriesKey
,rowKey
andcolumnKey
).Classes in org.jfree.chart3d.data that implement Values3DModifier and TypeClassDescriptionfinal class
DefaultKeyedValues3D<S extends Comparable<S>,
R extends Comparable<R>, C extends Comparable<C>, V> A three dimensional table of numerical values, implementing theKeyedValues3D
interface.Methods in org.jfree.chart3d.data with parameters of type Values3DModifier and TypeMethodDescriptionstatic Range
DataUtils.findStackedValueRange
(Values3D<? extends Number> data) Finds the range of values in the dataset considering that each series is stacked on top of the other.static Range
DataUtils.findStackedValueRange
(Values3D<? extends Number> data, double base) Finds the range of values in the dataset considering that each series is stacked on top of the others, starting at the base value.static Range
DataUtils.findValueRange
(Values3D<? extends Number> data) Returns the range of values in the specified data structure (a three dimensional cube).static Range
DataUtils.findValueRange
(Values3D<? extends Number> data, double base) Returns the range of values in the specified data cube, ornull
if there is no data.static Range
DataUtils.findValueRange
(Values3D<? extends Number> data, double base, boolean finite) /** Returns the range of values in the specified data cube, ornull
if there is no data.static double[]
DataUtils.stackSubTotal
(Values3D<? extends Number> data, double base, int series, int row, int column) Returns the positive and negative subtotals of the values for all the series preceding the specified series. -
Uses of Values3D in org.jfree.chart3d.data.category
Subinterfaces of Values3D in org.jfree.chart3d.data.categoryModifier and TypeInterfaceDescriptioninterface
CategoryDataset3D<S extends Comparable<S>,
R extends Comparable<R>, C extends Comparable<C>> An interface for a dataset with multiple series of data in the form of(rowKey, columnKey, value)
.Classes in org.jfree.chart3d.data.category that implement Values3DModifier and TypeClassDescriptionfinal class
StandardCategoryDataset3D<S extends Comparable<S>,
R extends Comparable<R>, C extends Comparable<C>> A standard implementation of theCategoryDataset3D
interface. -
Uses of Values3D in org.jfree.chart3d.renderer.category
Methods in org.jfree.chart3d.renderer.category with parameters of type Values3DModifier and TypeMethodDescriptionAbstractCategoryRenderer3D.findValueRange
(Values3D<? extends Number> data) Returns the range of values that will be required on the value axis to see all the data from the dataset.AreaRenderer3D.findValueRange
(Values3D<? extends Number> data) Returns the range (for the value axis) that is required for this renderer to show all the values in the specified data set.BarRenderer3D.findValueRange
(Values3D<? extends Number> data) Returns the range of values that will be required on the value axis to see all the data from the dataset.CategoryRenderer3D.findValueRange
(Values3D<? extends Number> data) Returns the range that should be used on the value axis to display all the specified data using this renderer.StackedBarRenderer3D.findValueRange
(Values3D<? extends Number> data) Returns the range of values that will be required on the value axis to see all the data from the dataset.