| 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. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PieDataset3D
The interface through which the
PiePlot3D class obtains data for
pie charts. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultKeyedValues<T>
A list of
(key, value) pairs. |
class |
StandardPieDataset3D
A dataset that can be used with a
PiePlot3D. |
| Modifier and Type | Method and Description |
|---|---|
static KeyedValues<? extends java.lang.Number> |
JSONUtils.readKeyedValues(java.io.Reader reader)
Parses characters from the supplied reader and returns the corresponding
KeyedValues instance. |
static KeyedValues<? extends java.lang.Number> |
JSONUtils.readKeyedValues(java.lang.String json)
Parses the supplied JSON string into a
KeyedValues instance. |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
JSONUtils.writeKeyedValues(KeyedValues<? extends java.lang.Number> data)
Returns a string containing the data in JSON format.
|
static void |
JSONUtils.writeKeyedValues(KeyedValues<? extends java.lang.Number> data,
java.io.Writer writer)
Writes the data in JSON format to the supplied writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
StandardCategoryDataset3D.addSeriesAsRow(java.lang.Comparable<?> seriesKey,
java.lang.Comparable<?> rowKey,
KeyedValues<? extends java.lang.Number> data)
Adds a data series as a single row in the dataset.
|
void |
StandardCategoryDataset3D.addSeriesAsRow(java.lang.Comparable<?> seriesKey,
KeyedValues<? extends java.lang.Number> data)
Adds a data series as a single row in the dataset.
|