- java.lang.Object
-
- org.jfree.chart.renderer.AbstractRenderer
-
- org.jfree.chart.renderer.category.AbstractCategoryItemRenderer
-
- All Implemented Interfaces:
Serializable,Cloneable,PublicCloneable,ChartElement,org.jfree.chart.legend.LegendItemSource,CategoryItemRenderer
- Direct Known Subclasses:
AreaRenderer,BarRenderer,BoxAndWhiskerRenderer,CategoryStepRenderer,LevelRenderer,LineAndShapeRenderer,MinMaxCategoryRenderer,ScatterRenderer
public abstract class AbstractCategoryItemRenderer extends AbstractRenderer implements CategoryItemRenderer, Cloneable, PublicCloneable, Serializable
An abstract base class that you can use to implement a newCategoryItemRenderer. When you create a newCategoryItemRendereryou are not required to extend this class, but it makes the job easier.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.jfree.chart.renderer.AbstractRenderer
DEFAULT_OUTLINE_PAINT, DEFAULT_OUTLINE_STROKE, DEFAULT_PAINT, DEFAULT_SHAPE, DEFAULT_STROKE, DEFAULT_VALUE_LABEL_FONT, DEFAULT_VALUE_LABEL_PAINT, ZERO
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractCategoryItemRenderer()Creates a new renderer with no tool tip generator and no URL generator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddEntity(EntityCollection entities, Shape hotspot, CategoryDataset dataset, int row, int column, double entityX, double entityY)Adds an entity to the collection.protected voidaddItemEntity(EntityCollection entities, CategoryDataset dataset, int row, int column, Shape hotspot)Adds an entity with the specified hotspot.protected voidbeginElementGroup(Graphics2D g2, Comparable rowKey, Comparable columnKey)Adds aKEY_BEGIN_ELEMENThint to the graphics target.protected Point2DcalculateDomainMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)Calculates the(x, y)coordinates for drawing the label for a marker on the range axis.protected Point2DcalculateRangeMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)Calculates the (x, y) coordinates for drawing a marker label.Objectclone()Returns an independent copy of the renderer.protected CategoryItemRendererStatecreateState(PlotRenderingInfo info)Creates a new state instance---this method is called from theinitialise(Graphics2D, Rectangle2D, CategoryPlot, int, PlotRenderingInfo)method.voiddrawBackground(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)Draws a background for the data area.voiddrawDomainGridline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea, double value)Draws a grid line against the domain axis.voiddrawDomainMarker(Graphics2D g2, CategoryPlot plot, CategoryAxis axis, CategoryMarker marker, Rectangle2D dataArea)Draws a marker for the domain axis.protected voiddrawItemLabel(Graphics2D g2, PlotOrientation orientation, CategoryDataset dataset, int row, int column, double x, double y, boolean negative)Draws an item label.voiddrawOutline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)Draws an outline for the data area.voiddrawRangeLine(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Rectangle2D dataArea, double value, Paint paint, Stroke stroke)Draws a line perpendicular to the range axis.voiddrawRangeMarker(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Marker marker, Rectangle2D dataArea)Draws a marker for the range axis.booleanequals(Object obj)Tests this renderer for equality with another object.RangefindRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.protected RangefindRangeBounds(CategoryDataset dataset, boolean includeInterval)Returns the range of values the renderer requires to display all the items from the specified dataset.intgetColumnCount()Returns the number of columns in the dataset.CategoryItemLabelGeneratorgetDefaultItemLabelGenerator()Returns the default item label generator.CategoryURLGeneratorgetDefaultItemURLGenerator()Returns the default item URL generator.CategoryToolTipGeneratorgetDefaultToolTipGenerator()Returns the default tool tip generator (the "layer 2" generator).protected CategoryAxisgetDomainAxis(CategoryPlot plot, int index)Returns a domain axis for a plot.DrawingSuppliergetDrawingSupplier()Returns the drawing supplier from the plot.CategoryItemLabelGeneratorgetItemLabelGenerator(int row, int column)Returns the item label generator for a data item.doublegetItemMiddle(Comparable<?> rowKey, Comparable<?> columnKey, CategoryDataset<?,?> dataset, CategoryAxis axis, Rectangle2D area, RectangleEdge edge)Returns the Java2D coordinate for the middle of the specified data item.CategoryURLGeneratorgetItemURLGenerator(int row, int column)Returns the URL generator for a data item.org.jfree.chart.legend.LegendItemgetLegendItem(int datasetIndex, int series)Returns a legend item for a series.CategorySeriesLabelGeneratorgetLegendItemLabelGenerator()Returns the legend item label generator.org.jfree.chart.legend.LegendItemCollectiongetLegendItems()Returns a (possibly empty) collection of legend items for the series that this renderer is responsible for drawing.CategorySeriesLabelGeneratorgetLegendItemToolTipGenerator()Returns the legend item tool tip generator.CategorySeriesLabelGeneratorgetLegendItemURLGenerator()Returns the legend item URL generator.intgetPassCount()Returns the number of passes through the dataset required by the renderer.CategoryPlotgetPlot()Returns the plot that the renderer has been assigned to (wherenullindicates that the renderer is not currently assigned to a plot).protected ValueAxisgetRangeAxis(CategoryPlot plot, int index)Returns a range axis for a plot.intgetRowCount()Returns the number of rows in the dataset.CategoryItemLabelGeneratorgetSeriesItemLabelGenerator(int series)Returns the item label generator for a series.CategoryURLGeneratorgetSeriesItemURLGenerator(int series)Returns the URL generator for a series.CategoryToolTipGeneratorgetSeriesToolTipGenerator(int series)Returns the tool tip generator for the specified series (a "layer 1" generator).CategoryToolTipGeneratorgetToolTipGenerator(int row, int column)Returns the tool tip generator that should be used for the specified item.inthashCode()Returns a hash code for the renderer.CategoryItemRendererStateinitialise(Graphics2D g2, Rectangle2D dataArea, CategoryPlot plot, int rendererIndex, PlotRenderingInfo info)Initialises the renderer and returns a state object that will be used for the remainder of the drawing process for a single chart.voidsetDefaultItemLabelGenerator(CategoryItemLabelGenerator generator)Sets the default item label generator and sends aRendererChangeEventto all registered listeners.voidsetDefaultItemLabelGenerator(CategoryItemLabelGenerator generator, boolean notify)Sets the default item label generator and sends aRendererChangeEventto all registered listeners.voidsetDefaultItemURLGenerator(CategoryURLGenerator generator)Sets the default item URL generator and sends aRendererChangeEventto all registered listeners.voidsetDefaultItemURLGenerator(CategoryURLGenerator generator, boolean notify)Sets the default item URL generator and sends aRendererChangeEventto all registered listeners.voidsetDefaultToolTipGenerator(CategoryToolTipGenerator generator)Sets the default tool tip generator and sends aRendererChangeEventto all registered listeners.voidsetDefaultToolTipGenerator(CategoryToolTipGenerator generator, boolean notify)Sets the default tool tip generator and sends aRendererChangeEventto all registered listeners.voidsetLegendItemLabelGenerator(CategorySeriesLabelGenerator generator)Sets the legend item label generator and sends aRendererChangeEventto all registered listeners.voidsetLegendItemToolTipGenerator(CategorySeriesLabelGenerator generator)Sets the legend item tool tip generator and sends aRendererChangeEventto all registered listeners.voidsetLegendItemURLGenerator(CategorySeriesLabelGenerator generator)Sets the legend item URL generator and sends aRendererChangeEventto all registered listeners.voidsetPlot(CategoryPlot plot)Sets the plot that the renderer has been assigned to.voidsetSeriesItemLabelGenerator(int series, CategoryItemLabelGenerator generator)Sets the item label generator for a series and sends aRendererChangeEventto all registered listeners.voidsetSeriesItemLabelGenerator(int series, CategoryItemLabelGenerator generator, boolean notify)Sets the item label generator for a series and sends aRendererChangeEventto all registered listeners.voidsetSeriesItemURLGenerator(int series, CategoryURLGenerator generator)Sets the URL generator for a series and sends aRendererChangeEventto all registered listeners.voidsetSeriesItemURLGenerator(int series, CategoryURLGenerator generator, boolean notify)Sets the URL generator for a series and sends aRendererChangeEventto all registered listeners.voidsetSeriesToolTipGenerator(int series, CategoryToolTipGenerator generator)Sets the tool tip generator for a series and sends aRendererChangeEventto all registered listeners.voidsetSeriesToolTipGenerator(int series, CategoryToolTipGenerator generator, boolean notify)Sets the tool tip generator for a series and sends aRendererChangeEventto all registered listeners.protected voidupdateCrosshairValues(CategoryCrosshairState crosshairState, Comparable rowKey, Comparable columnKey, double value, int datasetIndex, double transX, double transY, PlotOrientation orientation)Considers the current (x, y) coordinate and updates the crosshair point if it meets the criteria (usually means the (x, y) coordinate is the closest to the anchor point so far).-
Methods inherited from class org.jfree.chart.renderer.AbstractRenderer
addChangeListener, beginElementGroup, calculateLabelAnchorPoint, clearSeriesPaints, clearSeriesStrokes, endElementGroup, fireChangeEvent, getAutoPopulateSeriesFillPaint, getAutoPopulateSeriesOutlinePaint, getAutoPopulateSeriesOutlineStroke, getAutoPopulateSeriesPaint, getAutoPopulateSeriesShape, getAutoPopulateSeriesStroke, getDataBoundsIncludesVisibleSeriesOnly, getDefaultCreateEntities, getDefaultEntityRadius, getDefaultFillPaint, getDefaultItemLabelFont, getDefaultItemLabelPaint, getDefaultItemLabelsVisible, getDefaultLegendShape, getDefaultLegendTextFont, getDefaultLegendTextPaint, getDefaultNegativeItemLabelPosition, getDefaultOutlinePaint, getDefaultOutlineStroke, getDefaultPaint, getDefaultPositiveItemLabelPosition, getDefaultSeriesVisible, getDefaultSeriesVisibleInLegend, getDefaultShape, getDefaultStroke, getItemCreateEntity, getItemFillPaint, getItemLabelAnchorOffset, getItemLabelFont, getItemLabelPaint, getItemOutlinePaint, getItemOutlineStroke, getItemPaint, getItemShape, getItemStroke, getItemVisible, getLegendShape, getLegendTextFont, getLegendTextPaint, getNegativeItemLabelPosition, getPositiveItemLabelPosition, getSeriesCreateEntities, getSeriesFillPaint, getSeriesItemLabelFont, getSeriesItemLabelPaint, getSeriesNegativeItemLabelPosition, getSeriesOutlinePaint, getSeriesOutlineStroke, getSeriesPaint, getSeriesPositiveItemLabelPosition, getSeriesShape, getSeriesStroke, getSeriesVisible, getSeriesVisibleInLegend, getTreatLegendShapeAsLine, hasListener, isItemLabelVisible, isSeriesItemLabelsVisible, isSeriesVisible, isSeriesVisibleInLegend, lookupLegendShape, lookupLegendTextFont, lookupLegendTextPaint, lookupSeriesFillPaint, lookupSeriesOutlinePaint, lookupSeriesOutlineStroke, lookupSeriesPaint, lookupSeriesShape, lookupSeriesStroke, notifyListeners, receive, removeChangeListener, setAutoPopulateSeriesFillPaint, setAutoPopulateSeriesOutlinePaint, setAutoPopulateSeriesOutlineStroke, setAutoPopulateSeriesPaint, setAutoPopulateSeriesShape, setAutoPopulateSeriesStroke, setDataBoundsIncludesVisibleSeriesOnly, setDefaultCreateEntities, setDefaultCreateEntities, setDefaultEntityRadius, setDefaultFillPaint, setDefaultFillPaint, setDefaultItemLabelFont, setDefaultItemLabelFont, setDefaultItemLabelPaint, setDefaultItemLabelPaint, setDefaultItemLabelsVisible, setDefaultItemLabelsVisible, setDefaultLegendShape, setDefaultLegendTextFont, setDefaultLegendTextPaint, setDefaultNegativeItemLabelPosition, setDefaultNegativeItemLabelPosition, setDefaultOutlinePaint, setDefaultOutlinePaint, setDefaultOutlineStroke, setDefaultOutlineStroke, setDefaultPaint, setDefaultPaint, setDefaultPositiveItemLabelPosition, setDefaultPositiveItemLabelPosition, setDefaultSeriesVisible, setDefaultSeriesVisible, setDefaultSeriesVisibleInLegend, setDefaultSeriesVisibleInLegend, setDefaultShape, setDefaultShape, setDefaultStroke, setDefaultStroke, setItemLabelAnchorOffset, setLegendShape, setLegendTextFont, setLegendTextPaint, setSeriesCreateEntities, setSeriesCreateEntities, setSeriesFillPaint, setSeriesFillPaint, setSeriesItemLabelFont, setSeriesItemLabelFont, setSeriesItemLabelPaint, setSeriesItemLabelPaint, setSeriesItemLabelsVisible, setSeriesItemLabelsVisible, setSeriesItemLabelsVisible, setSeriesNegativeItemLabelPosition, setSeriesNegativeItemLabelPosition, setSeriesOutlinePaint, setSeriesOutlinePaint, setSeriesOutlineStroke, setSeriesOutlineStroke, setSeriesPaint, setSeriesPaint, setSeriesPositiveItemLabelPosition, setSeriesPositiveItemLabelPosition, setSeriesShape, setSeriesShape, setSeriesStroke, setSeriesStroke, setSeriesVisible, setSeriesVisible, setSeriesVisibleInLegend, setSeriesVisibleInLegend, setTreatLegendShapeAsLine
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jfree.chart.renderer.category.CategoryItemRenderer
addChangeListener, drawItem, getDefaultCreateEntities, getDefaultFillPaint, getDefaultItemLabelFont, getDefaultItemLabelPaint, getDefaultItemLabelsVisible, getDefaultNegativeItemLabelPosition, getDefaultOutlinePaint, getDefaultOutlineStroke, getDefaultPaint, getDefaultPositiveItemLabelPosition, getDefaultSeriesVisible, getDefaultSeriesVisibleInLegend, getDefaultShape, getDefaultStroke, getItemCreateEntity, getItemFillPaint, getItemLabelFont, getItemLabelPaint, getItemOutlinePaint, getItemOutlineStroke, getItemPaint, getItemShape, getItemStroke, getItemVisible, getNegativeItemLabelPosition, getPositiveItemLabelPosition, getSeriesCreateEntities, getSeriesFillPaint, getSeriesItemLabelFont, getSeriesItemLabelPaint, getSeriesNegativeItemLabelPosition, getSeriesOutlinePaint, getSeriesOutlineStroke, getSeriesPaint, getSeriesPositiveItemLabelPosition, getSeriesShape, getSeriesStroke, getSeriesVisible, getSeriesVisibleInLegend, isItemLabelVisible, isSeriesItemLabelsVisible, isSeriesVisible, isSeriesVisibleInLegend, removeChangeListener, setDefaultCreateEntities, setDefaultCreateEntities, setDefaultFillPaint, setDefaultItemLabelFont, setDefaultItemLabelFont, setDefaultItemLabelPaint, setDefaultItemLabelPaint, setDefaultItemLabelsVisible, setDefaultItemLabelsVisible, setDefaultNegativeItemLabelPosition, setDefaultNegativeItemLabelPosition, setDefaultOutlinePaint, setDefaultOutlinePaint, setDefaultOutlineStroke, setDefaultOutlineStroke, setDefaultPaint, setDefaultPaint, setDefaultPositiveItemLabelPosition, setDefaultPositiveItemLabelPosition, setDefaultSeriesVisible, setDefaultSeriesVisible, setDefaultSeriesVisibleInLegend, setDefaultSeriesVisibleInLegend, setDefaultShape, setDefaultShape, setDefaultStroke, setDefaultStroke, setSeriesCreateEntities, setSeriesCreateEntities, setSeriesFillPaint, setSeriesItemLabelFont, setSeriesItemLabelFont, setSeriesItemLabelPaint, setSeriesItemLabelPaint, setSeriesItemLabelsVisible, setSeriesItemLabelsVisible, setSeriesItemLabelsVisible, setSeriesNegativeItemLabelPosition, setSeriesNegativeItemLabelPosition, setSeriesOutlinePaint, setSeriesOutlinePaint, setSeriesOutlineStroke, setSeriesOutlineStroke, setSeriesPaint, setSeriesPaint, setSeriesPositiveItemLabelPosition, setSeriesPositiveItemLabelPosition, setSeriesShape, setSeriesShape, setSeriesStroke, setSeriesStroke, setSeriesVisible, setSeriesVisible, setSeriesVisibleInLegend, setSeriesVisibleInLegend
-
Methods inherited from interface org.jfree.chart.ChartElement
receive
-
-
-
-
Constructor Detail
-
AbstractCategoryItemRenderer
protected AbstractCategoryItemRenderer()
Creates a new renderer with no tool tip generator and no URL generator. The defaults (no tool tip or URL generators) have been chosen to minimise the processing required to generate a default chart. If you require tool tips or URLs, then you can easily add the required generators.
-
-
Method Detail
-
getPassCount
public int getPassCount()
Returns the number of passes through the dataset required by the renderer. This method returns1, subclasses should override if they need more passes.- Specified by:
getPassCountin interfaceCategoryItemRenderer- Returns:
- The pass count.
-
getPlot
public CategoryPlot getPlot()
Returns the plot that the renderer has been assigned to (wherenullindicates that the renderer is not currently assigned to a plot).- Specified by:
getPlotin interfaceCategoryItemRenderer- Returns:
- The plot (possibly
null). - See Also:
setPlot(CategoryPlot)
-
setPlot
public void setPlot(CategoryPlot plot)
Sets the plot that the renderer has been assigned to. This method is usually called by theCategoryPlot, in normal usage you shouldn't need to call this method directly.- Specified by:
setPlotin interfaceCategoryItemRenderer- Parameters:
plot- the plot (nullnot permitted).- See Also:
getPlot()
-
getItemLabelGenerator
public CategoryItemLabelGenerator getItemLabelGenerator(int row, int column)
Returns the item label generator for a data item. This implementation simply passes control to thegetSeriesItemLabelGenerator(int)method. If, for some reason, you want a different generator for individual items, you can override this method.- Specified by:
getItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
row- the row index (zero based).column- the column index (zero based).- Returns:
- The generator (possibly
null).
-
getSeriesItemLabelGenerator
public CategoryItemLabelGenerator getSeriesItemLabelGenerator(int series)
Returns the item label generator for a series.- Specified by:
getSeriesItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).- Returns:
- The generator (possibly
null). - See Also:
setSeriesItemLabelGenerator(int, CategoryItemLabelGenerator)
-
setSeriesItemLabelGenerator
public void setSeriesItemLabelGenerator(int series, CategoryItemLabelGenerator generator)
Sets the item label generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).generator- the generator (nullpermitted).- See Also:
getSeriesItemLabelGenerator(int)
-
setSeriesItemLabelGenerator
public void setSeriesItemLabelGenerator(int series, CategoryItemLabelGenerator generator, boolean notify)
Sets the item label generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).generator- the generator (nullpermitted).notify- notify listeners?- See Also:
getSeriesItemLabelGenerator(int)
-
getDefaultItemLabelGenerator
public CategoryItemLabelGenerator getDefaultItemLabelGenerator()
Returns the default item label generator.- Specified by:
getDefaultItemLabelGeneratorin interfaceCategoryItemRenderer- Returns:
- The generator (possibly
null). - See Also:
setDefaultItemLabelGenerator(CategoryItemLabelGenerator)
-
setDefaultItemLabelGenerator
public void setDefaultItemLabelGenerator(CategoryItemLabelGenerator generator)
Sets the default item label generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the generator (nullpermitted).- See Also:
getDefaultItemLabelGenerator()
-
setDefaultItemLabelGenerator
public void setDefaultItemLabelGenerator(CategoryItemLabelGenerator generator, boolean notify)
Sets the default item label generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultItemLabelGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the generator (nullpermitted).notify- notify listeners?- See Also:
getDefaultItemLabelGenerator()
-
getToolTipGenerator
public CategoryToolTipGenerator getToolTipGenerator(int row, int column)
Returns the tool tip generator that should be used for the specified item. This method looks up the generator using the "three-layer" approach outlined in the general description of this interface. You can override this method if you want to return a different generator per item.- Specified by:
getToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
row- the row index (zero-based).column- the column index (zero-based).- Returns:
- The generator (possibly
null).
-
getSeriesToolTipGenerator
public CategoryToolTipGenerator getSeriesToolTipGenerator(int series)
Returns the tool tip generator for the specified series (a "layer 1" generator).- Specified by:
getSeriesToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero-based).- Returns:
- The tool tip generator (possibly
null). - See Also:
setSeriesToolTipGenerator(int, CategoryToolTipGenerator)
-
setSeriesToolTipGenerator
public void setSeriesToolTipGenerator(int series, CategoryToolTipGenerator generator)
Sets the tool tip generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero-based).generator- the generator (nullpermitted).- See Also:
getSeriesToolTipGenerator(int)
-
setSeriesToolTipGenerator
public void setSeriesToolTipGenerator(int series, CategoryToolTipGenerator generator, boolean notify)
Sets the tool tip generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero-based).generator- the generator (nullpermitted).notify- notify listeners?- See Also:
getSeriesToolTipGenerator(int)
-
getDefaultToolTipGenerator
public CategoryToolTipGenerator getDefaultToolTipGenerator()
Returns the default tool tip generator (the "layer 2" generator).- Specified by:
getDefaultToolTipGeneratorin interfaceCategoryItemRenderer- Returns:
- The tool tip generator (possibly
null). - See Also:
setDefaultToolTipGenerator(CategoryToolTipGenerator)
-
setDefaultToolTipGenerator
public void setDefaultToolTipGenerator(CategoryToolTipGenerator generator)
Sets the default tool tip generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the generator (nullpermitted).- See Also:
getDefaultToolTipGenerator()
-
setDefaultToolTipGenerator
public void setDefaultToolTipGenerator(CategoryToolTipGenerator generator, boolean notify)
Sets the default tool tip generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultToolTipGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the generator (nullpermitted).notify- notify listeners?- See Also:
getDefaultToolTipGenerator()
-
getItemURLGenerator
public CategoryURLGenerator getItemURLGenerator(int row, int column)
Returns the URL generator for a data item. This method just calls the getSeriesItemURLGenerator method, but you can override this behaviour if you want to.- Specified by:
getItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
row- the row index (zero based).column- the column index (zero based).- Returns:
- The URL generator.
-
getSeriesItemURLGenerator
public CategoryURLGenerator getSeriesItemURLGenerator(int series)
Returns the URL generator for a series.- Specified by:
getSeriesItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).- Returns:
- The URL generator for the series.
- See Also:
setSeriesItemURLGenerator(int, CategoryURLGenerator)
-
setSeriesItemURLGenerator
public void setSeriesItemURLGenerator(int series, CategoryURLGenerator generator)
Sets the URL generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).generator- the generator.- See Also:
getSeriesItemURLGenerator(int)
-
setSeriesItemURLGenerator
public void setSeriesItemURLGenerator(int series, CategoryURLGenerator generator, boolean notify)
Sets the URL generator for a series and sends aRendererChangeEventto all registered listeners.- Specified by:
setSeriesItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
series- the series index (zero based).generator- the generator.notify- notify listeners?- See Also:
getSeriesItemURLGenerator(int)
-
getDefaultItemURLGenerator
public CategoryURLGenerator getDefaultItemURLGenerator()
Returns the default item URL generator.- Specified by:
getDefaultItemURLGeneratorin interfaceCategoryItemRenderer- Returns:
- The item URL generator.
- See Also:
setDefaultItemURLGenerator(CategoryURLGenerator)
-
setDefaultItemURLGenerator
public void setDefaultItemURLGenerator(CategoryURLGenerator generator)
Sets the default item URL generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the item URL generator (nullpermitted).- See Also:
getDefaultItemURLGenerator()
-
setDefaultItemURLGenerator
public void setDefaultItemURLGenerator(CategoryURLGenerator generator, boolean notify)
Sets the default item URL generator and sends aRendererChangeEventto all registered listeners.- Specified by:
setDefaultItemURLGeneratorin interfaceCategoryItemRenderer- Parameters:
generator- the item URL generator (nullpermitted).notify- notify listeners?- See Also:
getDefaultItemURLGenerator()
-
getRowCount
public int getRowCount()
Returns the number of rows in the dataset. This value is updated in theinitialise(java.awt.Graphics2D, java.awt.geom.Rectangle2D, org.jfree.chart.plot.CategoryPlot, int, org.jfree.chart.plot.PlotRenderingInfo)method.- Returns:
- The row count.
-
getColumnCount
public int getColumnCount()
Returns the number of columns in the dataset. This value is updated in theinitialise(java.awt.Graphics2D, java.awt.geom.Rectangle2D, org.jfree.chart.plot.CategoryPlot, int, org.jfree.chart.plot.PlotRenderingInfo)method.- Returns:
- The column count.
-
createState
protected CategoryItemRendererState createState(PlotRenderingInfo info)
Creates a new state instance---this method is called from theinitialise(Graphics2D, Rectangle2D, CategoryPlot, int, PlotRenderingInfo)method. Subclasses can override this method if they need to use a subclass ofCategoryItemRendererState.- Parameters:
info- collects plot rendering info (nullpermitted).- Returns:
- The new state instance (never
null).
-
initialise
public CategoryItemRendererState initialise(Graphics2D g2, Rectangle2D dataArea, CategoryPlot plot, int rendererIndex, PlotRenderingInfo info)
Initialises the renderer and returns a state object that will be used for the remainder of the drawing process for a single chart. The state object allows for the fact that the renderer may be used simultaneously by multiple threads (each thread will work with a separate state object).- Specified by:
initialisein interfaceCategoryItemRenderer- Parameters:
g2- the graphics device.dataArea- the data area.plot- the plot.rendererIndex- the renderer index.info- an object for returning information about the structure of the plot (nullpermitted).- Returns:
- The renderer state.
-
beginElementGroup
protected void beginElementGroup(Graphics2D g2, Comparable rowKey, Comparable columnKey)
Adds aKEY_BEGIN_ELEMENThint to the graphics target. This hint is recognised by JFreeSVG (in theory it could be used by otherGraphics2Dimplementations also).- Parameters:
g2- the graphics target (nullnot permitted).rowKey- the row key that identifies the element (nullnot permitted).columnKey- the column key that identifies the element (nullnot permitted).
-
findRangeBounds
public Range findRangeBounds(CategoryDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.- Specified by:
findRangeBoundsin interfaceCategoryItemRenderer- Parameters:
dataset- the dataset (nullpermitted).- Returns:
- The range (or
nullif the dataset isnullor empty).
-
findRangeBounds
protected Range findRangeBounds(CategoryDataset dataset, boolean includeInterval)
Returns the range of values the renderer requires to display all the items from the specified dataset.- Parameters:
dataset- the dataset (nullpermitted).includeInterval- include the y-interval if the dataset has one.- Returns:
- The range (
nullif the dataset isnullor empty).
-
getItemMiddle
public double getItemMiddle(Comparable<?> rowKey, Comparable<?> columnKey, CategoryDataset<?,?> dataset, CategoryAxis axis, Rectangle2D area, RectangleEdge edge)
Returns the Java2D coordinate for the middle of the specified data item.- Specified by:
getItemMiddlein interfaceCategoryItemRenderer- Parameters:
rowKey- the row key.columnKey- the column key.dataset- the dataset.axis- the axis.area- the data area.edge- the edge along which the axis lies.- Returns:
- The Java2D coordinate for the middle of the item.
-
drawBackground
public void drawBackground(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)
Draws a background for the data area. The default implementation just gets the plot to draw the background, but some renderers will override this behaviour.- Specified by:
drawBackgroundin interfaceCategoryItemRenderer- Parameters:
g2- the graphics device.plot- the plot.dataArea- the data area.
-
drawOutline
public void drawOutline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)
Draws an outline for the data area. The default implementation just gets the plot to draw the outline, but some renderers will override this behaviour.- Specified by:
drawOutlinein interfaceCategoryItemRenderer- Parameters:
g2- the graphics device.plot- the plot.dataArea- the data area.
-
drawDomainGridline
public void drawDomainGridline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea, double value)
Draws a grid line against the domain axis.Note that this default implementation assumes that the horizontal axis is the domain axis. If this is not the case, you will need to override this method.
- Specified by:
drawDomainGridlinein interfaceCategoryItemRenderer- Parameters:
g2- the graphics device.plot- the plot.dataArea- the area for plotting data.value- the Java2D value at which the grid line should be drawn.
-
drawRangeLine
public void drawRangeLine(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Rectangle2D dataArea, double value, Paint paint, Stroke stroke)
Draws a line perpendicular to the range axis.- Specified by:
drawRangeLinein interfaceCategoryItemRenderer- Parameters:
g2- the graphics device.plot- the plot.axis- the value axis.dataArea- the area for plotting data.value- the value at which the grid line should be drawn.paint- the paint (nullnot permitted).stroke- the stroke (nullnot permitted).
-
drawDomainMarker
public void drawDomainMarker(Graphics2D g2, CategoryPlot plot, CategoryAxis axis, CategoryMarker marker, Rectangle2D dataArea)
Draws a marker for the domain axis.- Specified by:
drawDomainMarkerin interfaceCategoryItemRenderer- Parameters:
g2- the graphics device (notnull).plot- the plot (notnull).axis- the range axis (notnull).marker- the marker to be drawn (notnull).dataArea- the area inside the axes (notnull).- See Also:
drawRangeMarker(Graphics2D, CategoryPlot, ValueAxis, Marker, Rectangle2D)
-
drawRangeMarker
public void drawRangeMarker(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Marker marker, Rectangle2D dataArea)
Draws a marker for the range axis.- Specified by:
drawRangeMarkerin interfaceCategoryItemRenderer- Parameters:
g2- the graphics device (notnull).plot- the plot (notnull).axis- the range axis (notnull).marker- the marker to be drawn (notnull).dataArea- the area inside the axes (notnull).- See Also:
drawDomainMarker(Graphics2D, CategoryPlot, CategoryAxis, CategoryMarker, Rectangle2D)
-
calculateDomainMarkerTextAnchorPoint
protected Point2D calculateDomainMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)
Calculates the(x, y)coordinates for drawing the label for a marker on the range axis.- Parameters:
g2- the graphics device.orientation- the plot orientation.dataArea- the data area.markerArea- the rectangle surrounding the marker.markerOffset- the marker offset.labelOffsetType- the label offset type.anchor- the label anchor.- Returns:
- The coordinates for drawing the marker label.
-
calculateRangeMarkerTextAnchorPoint
protected Point2D calculateRangeMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)
Calculates the (x, y) coordinates for drawing a marker label.- Parameters:
g2- the graphics device.orientation- the plot orientation.dataArea- the data area.markerArea- the rectangle surrounding the marker.markerOffset- the marker offset.labelOffsetType- the label offset type.anchor- the label anchor.- Returns:
- The coordinates for drawing the marker label.
-
getLegendItem
public org.jfree.chart.legend.LegendItem getLegendItem(int datasetIndex, int series)
Returns a legend item for a series. This default implementation will returnnullifAbstractRenderer.isSeriesVisible(int)orAbstractRenderer.isSeriesVisibleInLegend(int)returnsfalse.- Specified by:
getLegendItemin interfaceCategoryItemRenderer- Parameters:
datasetIndex- the dataset index (zero-based).series- the series index (zero-based).- Returns:
- The legend item (possibly
null). - See Also:
getLegendItems()
-
equals
public boolean equals(Object obj)
Tests this renderer for equality with another object.- Overrides:
equalsin classAbstractRenderer- Parameters:
obj- the object.- Returns:
trueorfalse.
-
hashCode
public int hashCode()
Returns a hash code for the renderer.- Overrides:
hashCodein classAbstractRenderer- Returns:
- The hash code.
-
getDrawingSupplier
public DrawingSupplier getDrawingSupplier()
Returns the drawing supplier from the plot.- Specified by:
getDrawingSupplierin classAbstractRenderer- Returns:
- The drawing supplier (possibly
null).
-
updateCrosshairValues
protected void updateCrosshairValues(CategoryCrosshairState crosshairState, Comparable rowKey, Comparable columnKey, double value, int datasetIndex, double transX, double transY, PlotOrientation orientation)
Considers the current (x, y) coordinate and updates the crosshair point if it meets the criteria (usually means the (x, y) coordinate is the closest to the anchor point so far).- Parameters:
crosshairState- the crosshair state (nullpermitted, but the method does nothing in that case).rowKey- the row key.columnKey- the column key.value- the data value.datasetIndex- the dataset index.transX- the x-value translated to Java2D space.transY- the y-value translated to Java2D space.orientation- the plot orientation (nullnot permitted).
-
drawItemLabel
protected void drawItemLabel(Graphics2D g2, PlotOrientation orientation, CategoryDataset dataset, int row, int column, double x, double y, boolean negative)
Draws an item label.- Parameters:
g2- the graphics device.orientation- the orientation.dataset- the dataset.row- the row.column- the column.x- the x coordinate (in Java2D space).y- the y coordinate (in Java2D space).negative- indicates a negative value (which affects the item label position).
-
clone
public Object clone() throws CloneNotSupportedException
Returns an independent copy of the renderer. Theplotreference is shallow copied.- Specified by:
clonein interfacePublicCloneable- Overrides:
clonein classAbstractRenderer- Returns:
- A clone.
- Throws:
CloneNotSupportedException- can be thrown if one of the objects belonging to the renderer does not support cloning (for example, an item label generator).
-
getDomainAxis
protected CategoryAxis getDomainAxis(CategoryPlot plot, int index)
Returns a domain axis for a plot.- Parameters:
plot- the plot.index- the axis index.- Returns:
- A domain axis.
-
getRangeAxis
protected ValueAxis getRangeAxis(CategoryPlot plot, int index)
Returns a range axis for a plot.- Parameters:
plot- the plot.index- the axis index.- Returns:
- A range axis.
-
getLegendItems
public org.jfree.chart.legend.LegendItemCollection getLegendItems()
Returns a (possibly empty) collection of legend items for the series that this renderer is responsible for drawing.- Specified by:
getLegendItemsin interfaceorg.jfree.chart.legend.LegendItemSource- Returns:
- The legend item collection (never
null). - See Also:
getLegendItem(int, int)
-
getLegendItemLabelGenerator
public CategorySeriesLabelGenerator getLegendItemLabelGenerator()
Returns the legend item label generator.- Returns:
- The label generator (never
null). - See Also:
setLegendItemLabelGenerator(CategorySeriesLabelGenerator)
-
setLegendItemLabelGenerator
public void setLegendItemLabelGenerator(CategorySeriesLabelGenerator generator)
Sets the legend item label generator and sends aRendererChangeEventto all registered listeners.- Parameters:
generator- the generator (nullnot permitted).- See Also:
getLegendItemLabelGenerator()
-
getLegendItemToolTipGenerator
public CategorySeriesLabelGenerator getLegendItemToolTipGenerator()
Returns the legend item tool tip generator.- Returns:
- The tool tip generator (possibly
null). - See Also:
setLegendItemToolTipGenerator(CategorySeriesLabelGenerator)
-
setLegendItemToolTipGenerator
public void setLegendItemToolTipGenerator(CategorySeriesLabelGenerator generator)
Sets the legend item tool tip generator and sends aRendererChangeEventto all registered listeners.- Parameters:
generator- the generator (nullpermitted).- See Also:
setLegendItemToolTipGenerator(CategorySeriesLabelGenerator)
-
getLegendItemURLGenerator
public CategorySeriesLabelGenerator getLegendItemURLGenerator()
Returns the legend item URL generator.- Returns:
- The URL generator (possibly
null). - See Also:
setLegendItemURLGenerator(CategorySeriesLabelGenerator)
-
setLegendItemURLGenerator
public void setLegendItemURLGenerator(CategorySeriesLabelGenerator generator)
Sets the legend item URL generator and sends aRendererChangeEventto all registered listeners.- Parameters:
generator- the generator (nullpermitted).- See Also:
getLegendItemURLGenerator()
-
addItemEntity
protected void addItemEntity(EntityCollection entities, CategoryDataset dataset, int row, int column, Shape hotspot)
Adds an entity with the specified hotspot.- Parameters:
entities- the entity collection.dataset- the dataset.row- the row index.column- the column index.hotspot- the hotspot (nullnot permitted).
-
addEntity
protected void addEntity(EntityCollection entities, Shape hotspot, CategoryDataset dataset, int row, int column, double entityX, double entityY)
Adds an entity to the collection.- Parameters:
entities- the entity collection being populated.hotspot- the entity area (ifnulla default will be used).dataset- the dataset.row- the series.column- the item.entityX- the entity's center x-coordinate in user space (only used ifareaisnull).entityY- the entity's center y-coordinate in user space (only used ifareaisnull).
-
-