Uses of Class
org.jfree.chart.labels.ItemLabelPosition
-
Packages that use ItemLabelPosition Package Description org.jfree.chart.renderer Core support for the plug-in renderers used by theCategoryPlot
andXYPlot
classes.org.jfree.chart.renderer.category Plug-in renderers for theCategoryPlot
class.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlot
class. -
-
Uses of ItemLabelPosition in org.jfree.chart.renderer
Fields in org.jfree.chart.renderer declared as ItemLabelPosition Modifier and Type Field Description private ItemLabelPosition
AbstractRenderer. defaultNegativeItemLabelPosition
The fallback negative item label position.private ItemLabelPosition
AbstractRenderer. defaultPositiveItemLabelPosition
The fallback positive item label position.Fields in org.jfree.chart.renderer with type parameters of type ItemLabelPosition Modifier and Type Field Description private java.util.Map<java.lang.Integer,ItemLabelPosition>
AbstractRenderer. negativeItemLabelPositionMap
The negative item label position (per series).private java.util.Map<java.lang.Integer,ItemLabelPosition>
AbstractRenderer. positiveItemLabelPositionMap
The positive item label position (per series).Methods in org.jfree.chart.renderer that return ItemLabelPosition Modifier and Type Method Description ItemLabelPosition
AbstractRenderer. getDefaultNegativeItemLabelPosition()
Returns the base item label position for negative values.ItemLabelPosition
AbstractRenderer. getDefaultPositiveItemLabelPosition()
Returns the default positive item label position.ItemLabelPosition
AbstractRenderer. getNegativeItemLabelPosition(int row, int column)
Returns the item label position for negative values.ItemLabelPosition
AbstractRenderer. getPositiveItemLabelPosition(int row, int column)
Returns the item label position for positive values.ItemLabelPosition
AbstractRenderer. getSeriesNegativeItemLabelPosition(int series)
Returns the item label position for all negative values in a series.ItemLabelPosition
AbstractRenderer. getSeriesPositiveItemLabelPosition(int series)
Returns the item label position for all positive values in a series.Methods in org.jfree.chart.renderer with parameters of type ItemLabelPosition Modifier and Type Method Description void
AbstractRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position)
Sets the default item label position for negative values and sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default negative item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position)
Sets the default positive item label position.void
AbstractRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default positive item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for negative values in a series and sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for negative values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for all positive values in a series and sends aRendererChangeEvent
to all registered listeners.void
AbstractRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for all positive values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners. -
Uses of ItemLabelPosition in org.jfree.chart.renderer.category
Fields in org.jfree.chart.renderer.category declared as ItemLabelPosition Modifier and Type Field Description private ItemLabelPosition
BarRenderer. negativeItemLabelPositionFallback
The fallback position if a negative item label doesn't fit inside the bar.private ItemLabelPosition
BarRenderer. positiveItemLabelPositionFallback
The fallback position if a positive item label doesn't fit inside the bar.Methods in org.jfree.chart.renderer.category that return ItemLabelPosition Modifier and Type Method Description ItemLabelPosition
CategoryItemRenderer. getDefaultNegativeItemLabelPosition()
Returns the default item label position for negative values.ItemLabelPosition
CategoryItemRenderer. getDefaultPositiveItemLabelPosition()
Returns the default positive item label position.ItemLabelPosition
CategoryItemRenderer. getNegativeItemLabelPosition(int row, int column)
Returns the item label position for negative values.ItemLabelPosition
BarRenderer. getNegativeItemLabelPositionFallback()
Returns the fallback position for negative item labels that don't fit within a bar.ItemLabelPosition
CategoryItemRenderer. getPositiveItemLabelPosition(int row, int column)
Returns the item label position for positive values.ItemLabelPosition
BarRenderer. getPositiveItemLabelPositionFallback()
Returns the fallback position for positive item labels that don't fit within a bar.ItemLabelPosition
CategoryItemRenderer. getSeriesNegativeItemLabelPosition(int series)
Returns the item label position for all negative values in a series.ItemLabelPosition
CategoryItemRenderer. getSeriesPositiveItemLabelPosition(int series)
Returns the item label position for all positive values in a series.Methods in org.jfree.chart.renderer.category with parameters of type ItemLabelPosition Modifier and Type Method Description void
CategoryItemRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position)
Sets the default item label position for negative values and sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default negative item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position)
Sets the default positive item label position.void
CategoryItemRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default positive item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
BarRenderer. setNegativeItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for negative item labels that don't fit within a bar, and sends aRendererChangeEvent
to all registered listeners.void
BarRenderer. setPositiveItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for positive item labels that don't fit within a bar, and sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for negative values in a series and sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for negative values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for all positive values in a series and sends aRendererChangeEvent
to all registered listeners.void
CategoryItemRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for all positive values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners. -
Uses of ItemLabelPosition in org.jfree.chart.renderer.xy
Fields in org.jfree.chart.renderer.xy declared as ItemLabelPosition Modifier and Type Field Description private ItemLabelPosition
XYBarRenderer. negativeItemLabelPositionFallback
The fallback position if a negative item label doesn't fit inside the bar.private ItemLabelPosition
XYBarRenderer. positiveItemLabelPositionFallback
The fallback position if a positive item label doesn't fit inside the bar.Methods in org.jfree.chart.renderer.xy that return ItemLabelPosition Modifier and Type Method Description ItemLabelPosition
XYItemRenderer. getDefaultNegativeItemLabelPosition()
Returns the default item label position for negative values.ItemLabelPosition
XYItemRenderer. getDefaultPositiveItemLabelPosition()
Returns the default positive item label position.ItemLabelPosition
XYItemRenderer. getNegativeItemLabelPosition(int row, int column)
Returns the item label position for negative values.ItemLabelPosition
XYBarRenderer. getNegativeItemLabelPositionFallback()
Returns the fallback position for negative item labels that don't fit within a bar.ItemLabelPosition
XYItemRenderer. getPositiveItemLabelPosition(int row, int column)
Returns the item label position for positive values.ItemLabelPosition
XYBarRenderer. getPositiveItemLabelPositionFallback()
Returns the fallback position for positive item labels that don't fit within a bar.ItemLabelPosition
XYItemRenderer. getSeriesNegativeItemLabelPosition(int series)
Returns the item label position for all negative values in a series.ItemLabelPosition
XYItemRenderer. getSeriesPositiveItemLabelPosition(int series)
Returns the item label position for all positive values in a series.Methods in org.jfree.chart.renderer.xy with parameters of type ItemLabelPosition Modifier and Type Method Description private java.lang.String
XYBarRenderer. calculateLabeltoDraw(java.lang.String label, java.awt.geom.Point2D anchorPoint, ItemLabelPosition position, java.awt.geom.Rectangle2D bar, java.awt.Graphics2D g2)
void
XYItemRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position)
Sets the default item label position for negative values and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setDefaultNegativeItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default negative item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position)
Sets the default positive item label position.void
XYItemRenderer. setDefaultPositiveItemLabelPosition(ItemLabelPosition position, boolean notify)
Sets the default positive item label position and, if requested, sends aRendererChangeEvent
to all registered listeners.void
XYBarRenderer. setNegativeItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for negative item labels that don't fit within a bar, and sends aRendererChangeEvent
to all registered listeners.void
XYBarRenderer. setPositiveItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for positive item labels that don't fit within a bar, and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for negative values in a series and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for negative values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position)
Sets the item label position for all positive values in a series and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position, boolean notify)
Sets the item label position for all positive values in a series and (if requested) sends aRendererChangeEvent
to all registered listeners.
-