| Package | Description |
|---|---|
| com.orsoncharts.data |
Core data structures used as the building blocks for datasets in Orson
Charts.
|
| com.orsoncharts.data.category |
Datasets that can be used by the
CategoryPlot3D
class. |
| com.orsoncharts.data.xyz |
Datasets that can be used by the
XYZPlot
class. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PieDataset3D<K extends java.lang.Comparable<K>>
The interface through which the
PiePlot3D class obtains data for
pie charts. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDataset3D
A base class that can be used to create new dataset classes.
|
class |
StandardPieDataset3D<K extends java.lang.Comparable<K>>
A dataset that can be used with a
PiePlot3D. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CategoryDataset3D<S extends java.lang.Comparable<S>,R extends java.lang.Comparable<R>,C extends java.lang.Comparable<C>>
An interface for a dataset with multiple series of data in the form of
(rowKey, columnKey, value). |
| Modifier and Type | Class and Description |
|---|---|
class |
StandardCategoryDataset3D<S extends java.lang.Comparable<S>,R extends java.lang.Comparable<R>,C extends java.lang.Comparable<C>>
A standard implementation of the
CategoryDataset3D interface. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
XYZDataset<S extends java.lang.Comparable<S>>
Defines the methods used to access data in the form of multiple series
containing
(x, y, z) data items. |
| Modifier and Type | Class and Description |
|---|---|
class |
XYZSeriesCollection<S extends java.lang.Comparable<S>>
A collection of
XYZSeries objects (implements the XYZDataset
interface so that it can be used as a source of data for an
XYZRenderer on an XYZPlot). |