| Package | Description |
|---|---|
| com.orsoncharts.axis | |
| com.orsoncharts.plot |
Standard plot types (
PiePlot3D,
CategoryPlot3D and
XYZPlot) that can be used with the
Chart3D class. |
| com.orsoncharts.style |
Classes for controlling chart styles.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractValueAxis3D
A base class for implementing numerical axes.
|
class |
LogAxis3D
A numerical axis with a logarithmic scale.
|
class |
NumberAxis3D
A numerical axis for use with 3D plots (implements
ValueAxis3D). |
| Modifier and Type | Method and Description |
|---|---|
ValueAxis3D |
CategoryPlot3D.getValueAxis()
Returns the value axis (the vertical axis in the plot).
|
ValueAxis3D |
XYZPlot.getXAxis()
Returns the x-axis.
|
ValueAxis3D |
XYZPlot.getYAxis()
Returns the y-axis.
|
ValueAxis3D |
XYZPlot.getZAxis()
Returns the z-axis.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CategoryPlot3D.setValueAxis(ValueAxis3D axis)
Sets the value axis and sends a
Plot3DChangeEvent to all
registered listeners. |
void |
XYZPlot.setXAxis(ValueAxis3D xAxis)
Sets the x-axis and sends a
Plot3DChangeEvent to all registered
listeners. |
void |
XYZPlot.setYAxis(ValueAxis3D yAxis)
Sets the y-axis and sends a
Plot3DChangeEvent to all registered
listeners. |
void |
XYZPlot.setZAxis(ValueAxis3D zAxis)
Sets the z-axis and sends a
Plot3DChangeEvent to all registered
listeners. |
| Constructor and Description |
|---|
CategoryPlot3D(CategoryDataset3D dataset,
CategoryRenderer3D renderer,
CategoryAxis3D rowAxis,
CategoryAxis3D columnAxis,
ValueAxis3D valueAxis)
Creates a new plot with the supplied dataset, renderer and axes.
|
XYZPlot(XYZDataset dataset,
XYZRenderer renderer,
ValueAxis3D xAxis,
ValueAxis3D yAxis,
ValueAxis3D zAxis)
Creates a new plot with the specified axes.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
ChartStyler.styleValueAxis(ValueAxis3D axis) |