java.lang.Object
org.jfree.chart3d.renderer.AbstractRenderer3D
org.jfree.chart3d.renderer.category.AbstractCategoryRenderer3D
org.jfree.chart3d.renderer.category.BarRenderer3D
- All Implemented Interfaces:
Serializable,ChartElement,CategoryRenderer3D,Renderer3D
- Direct Known Subclasses:
StackedBarRenderer3D
A renderer for creating 3D bar charts from a
(refer to
There is a factory method to create a chart using this renderer - see
NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
CategoryDataset3D (for
use with a CategoryPlot3D). For example:
BarChart3DDemo1.java for the code to generate the
above chart).
There is a factory method to create a chart using this renderer - see
Chart3DFactory.createBarChart(String, String, CategoryDataset3D, String, String, String).
NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
- See Also:
-
Field Summary
Fields inherited from interface org.jfree.chart3d.renderer.Renderer3D
TRANSPARENT_COLOR -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidcomposeItem(double value, double barBase, CategoryDataset3D dataset, int series, int row, int column, World world, Dimension3D dimensions, double xOffset, double yOffset, double zOffset) Performs the actual work of composing a bar to represent one item in the dataset.voidcomposeItem(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.protected voiddrawItemLabels(World world, CategoryDataset3D dataset, KeyedValues3DItemKey itemKey, double xw, double yw, double zw, double basew, boolean inverted) Draws the item labels.booleanTests this renderer for equality with an arbitrary object.findValueRange(Values3D<? extends Number> data) Returns the range of values that will be required on the value axis to see all the data from the dataset.doubleReturns the bar width as a percentage of the column width.doubleReturns the bar width as a percentage of the row width.doublegetBase()Returns the base value for the bars.Returns the object used to fetch the color for the base of bars where the base of the bar is "cropped" (on account of the base value falling outside of the bounds of the y-axis).Returns the object used to fetch the color for the top of bars where the top of the bar is "cropped" (on account of the data value falling outside of the bounds of the y-axis).voidsetBarXWidth(double barXWidth) Sets the the bar width as a percentage of the column width and fires aRenderer3DChangeEvent.voidsetBarZWidth(double barZWidth) Sets the the bar width as a percentage of the row width and fires aRenderer3DChangeEvent.voidsetBase(double base) Sets the base value for the bars and fires aRenderer3DChangeEvent.voidSets the object that determines the color to use for the base of bars where the base value falls outside the axis range, and sends aRenderer3DChangeEventto all registered listeners.voidsetTopColorSource(CategoryColorSource source) Sets the object used to fetch the color for the top of bars where the top of the bar is "cropped", and sends aRenderer3DChangeEventto all registered listeners.Methods inherited from class org.jfree.chart3d.renderer.category.AbstractCategoryRenderer3D
getColorSource, getItemLabelGenerator, getItemLabelOffsets, getPlot, setColors, setColorSource, setItemLabelGenerator, setItemLabelOffsets, setPlotMethods inherited from class org.jfree.chart3d.renderer.AbstractRenderer3D
addChangeListener, fireChangeEvent, getItemLabelBackgroundColor, getItemLabelColor, getItemLabelFont, getItemLabelPositioning, isNotify, notifyListeners, receive, removeChangeListener, setItemLabelBackgroundColor, setItemLabelColor, setItemLabelFont, setItemLabelPositioning, setNotifyMethods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jfree.chart3d.ChartElement
receiveMethods inherited from interface org.jfree.chart3d.renderer.Renderer3D
addChangeListener, removeChangeListener
-
Constructor Details
-
BarRenderer3D
public BarRenderer3D()Creates a new renderer with default attribute values.
-
-
Method Details
-
getBase
Returns the base value for the bars. The default value is0.0.- Returns:
- The base value for the bars.
- See Also:
-
setBase
Sets the base value for the bars and fires aRenderer3DChangeEvent.- Parameters:
base- the new base value.- See Also:
-
getBarXWidth
Returns the bar width as a percentage of the column width. The default value is0.8(the total width of each column in world units is1.0, so the default leaves a small gap between each bar).- Returns:
- The bar width (in world units).
-
setBarXWidth
Sets the the bar width as a percentage of the column width and fires aRenderer3DChangeEvent.- Parameters:
barXWidth- the new width.
-
getBarZWidth
Returns the bar width as a percentage of the row width. The default value is0.8.- Returns:
- The bar width.
-
setBarZWidth
Sets the the bar width as a percentage of the row width and fires aRenderer3DChangeEvent.- Parameters:
barZWidth- the new width.
-
getBaseColorSource
Returns the object used to fetch the color for the base of bars where the base of the bar is "cropped" (on account of the base value falling outside of the bounds of the y-axis). This is used to give a visual indication to the end-user that the bar on display is cropped. If this paint source isnull, the regular series color will be used for the top of the bars.- Returns:
- A paint source (possibly
null).
-
setBaseColorSource
Sets the object that determines the color to use for the base of bars where the base value falls outside the axis range, and sends aRenderer3DChangeEventto all registered listeners. If you set this tonull, the regular series color will be used to draw the base of the bar, but it will be harder for the end-user to know that only a section of the bar is visible in the chart. Note that the default base paint source returnsColor.WHITEalways.- Parameters:
source- the source (nullpermitted).- See Also:
-
getTopColorSource
Returns the object used to fetch the color for the top of bars where the top of the bar is "cropped" (on account of the data value falling outside of the bounds of the y-axis). This is used to give a visual indication to the end-user that the bar on display is cropped. If this paint source isnull, the regular series color will be used for the top of the bars.- Returns:
- A paint source (possibly
null).
-
setTopColorSource
Sets the object used to fetch the color for the top of bars where the top of the bar is "cropped", and sends aRenderer3DChangeEventto all registered listeners.- Parameters:
source- the source (nullpermitted).- See Also:
-
findValueRange
Returns the range of values that will be required on the value axis to see all the data from the dataset. We override the method to include in the range the base value for the bars.- Specified by:
findValueRangein interfaceCategoryRenderer3D- Overrides:
findValueRangein classAbstractCategoryRenderer3D- Parameters:
data- the data (nullnot permitted).- Returns:
- The range (possibly
null)
-
composeItem
public 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. This method will be called by theCategoryPlot3Dclass while iterating over the items in the dataset.- Specified by:
composeItemin interfaceCategoryRenderer3D- Parameters:
dataset- the dataset (nullnot permitted).series- the series index.row- the row index.column- the column index.world- the world (nullnot permitted).dimensions- the plot dimensions (nullnot permitted).xOffset- the x-offset.yOffset- the y-offset.zOffset- the z-offset.
-
composeItem
protected void composeItem(double value, double barBase, CategoryDataset3D dataset, int series, int row, int column, World world, Dimension3D dimensions, double xOffset, double yOffset, double zOffset) Performs the actual work of composing a bar to represent one item in the dataset. This method is reused by theStackedBarRenderer3Dsubclass.- Parameters:
value- the data value (top of the bar).barBase- the base value for the bar.dataset- the dataset.series- the series index.row- the row index.column- the column index.world- the world.dimensions- the plot dimensions.xOffset- the x-offset.yOffset- the y-offset.zOffset- the z-offset.
-
drawItemLabels
protected void drawItemLabels(World world, CategoryDataset3D dataset, KeyedValues3DItemKey itemKey, double xw, double yw, double zw, double basew, boolean inverted) Draws the item labels.- Parameters:
world- the world.dataset- the dataset.itemKey- the item key.xw- the x-coordinate.yw- the y-coordinate.zw- the z-coordinate.basew- the base coordinate.inverted- is the y-axis inverted?
-
equals
Tests this renderer for equality with an arbitrary object.- Overrides:
equalsin classAbstractCategoryRenderer3D- Parameters:
obj- the object (nullpermitted).- Returns:
- A boolean.
-