| Package | Description |
|---|---|
| com.orsoncharts | |
| com.orsoncharts.data |
Core data structures used as the building blocks for datasets in Orson
Charts.
|
| com.orsoncharts.label |
Classes related to chart labels.
|
| com.orsoncharts.plot |
Standard plot types (
PiePlot3D,
CategoryPlot3D and
XYZPlot) that can be used with the
Chart3D class. |
| Modifier and Type | Method and Description |
|---|---|
static Chart3D |
Chart3DFactory.createPieChart(java.lang.String title,
java.lang.String subtitle,
PieDataset3D dataset)
Creates and returns a pie chart based on the supplied dataset.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StandardPieDataset3D
A dataset that can be used with a
PiePlot3D. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
StandardPieLabelGenerator.generateLabel(PieDataset3D dataset,
java.lang.Comparable<?> key)
Generates the label for one section in a pie chart.
|
java.lang.String |
PieLabelGenerator.generateLabel(PieDataset3D dataset,
java.lang.Comparable<?> key)
Returns a label for one data item in a pie chart.
|
| Modifier and Type | Method and Description |
|---|---|
PieDataset3D |
PiePlot3D.getDataset()
Returns the dataset.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PiePlot3D.setDataset(PieDataset3D dataset)
Sets the dataset and notifies registered listeners that the dataset has
been updated.
|
| Constructor and Description |
|---|
PiePlot3D(PieDataset3D dataset)
Creates a new pie plot in 3D.
|