| Package | Description |
|---|---|
| com.orsoncharts.data |
Core data structures used as the building blocks for datasets in Orson
Charts.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultKeyedValues2D<T>
A two dimensional grid of (typically numerical) data that is accessible by
row and column keys.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyedValues2D<? extends java.lang.Number> |
JSONUtils.readKeyedValues2D(java.io.Reader reader)
Reads a data table from a JSON format string coming from the specified
reader.
|
static KeyedValues2D<? extends java.lang.Number> |
JSONUtils.readKeyedValues2D(java.lang.String json)
Reads a data table from a JSON format string.
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
JSONUtils.writeKeyedValues2D(KeyedValues2D<? extends java.lang.Number> data)
Writes a data table to a string in JSON format.
|
static void |
JSONUtils.writeKeyedValues2D(KeyedValues2D<? extends java.lang.Number> data,
java.io.Writer writer)
Writes the data in JSON format to the supplied writer.
|