public interface CategoryRenderer3D extends Renderer3D
CategoryPlot3D.TRANSPARENT_COLOR| Modifier and Type | Method and Description |
|---|---|
void |
composeItem(CategoryDataset3D dataset,
int series,
int row,
int column,
World world,
Dimension3D dimensions,
double xOffset,
double yOffset,
double zOffset)
Constructs and places one item from the specified dataset into the given
world.
|
Range |
findValueRange(Values3D<? extends java.lang.Number> data)
Returns the range that should be used on the value axis to display all
the specified data using this renderer.
|
CategoryColorSource |
getColorSource()
Returns the color source for the renderer, which is an object that
is responsible for providing the colors used by the renderer to draw
data (and legend) items.
|
CategoryPlot3D |
getPlot()
Returns the plot that this renderer is assigned to.
|
void |
setColors(java.awt.Color... colors)
Sets the colors for the renderer.
|
void |
setColorSource(CategoryColorSource source)
Sets the color source for the renderer and sends a
Renderer3DChangeEvent to all registered listeners. |
void |
setPlot(CategoryPlot3D plot)
Sets the plot that the renderer is assigned to.
|
addChangeListener, removeChangeListenerreceiveCategoryPlot3D getPlot()
null).void setPlot(CategoryPlot3D plot)
plot - the plot (null permitted).CategoryColorSource getColorSource()
null).void setColorSource(CategoryColorSource source)
Renderer3DChangeEvent to all registered listeners.source - the color source (null not permitted).void setColors(java.awt.Color... colors)
colors - the colors.Range findValueRange(Values3D<? extends java.lang.Number> data)
data - the data values (null not permitted).void composeItem(CategoryDataset3D dataset, int series, int row, int column, World world, Dimension3D dimensions, double xOffset, double yOffset, double zOffset)
CategoryPlot3D class
while iterating over the items in the dataset.dataset - the dataset (null not permitted).series - the series index.row - the row index.column - the column index.world - the world (null not permitted).dimensions - the plot dimensions (null not permitted).xOffset - the x-offset.yOffset - the y-offset.zOffset - the z-offset.