| Package | Description |
|---|---|
| org.jfree.chart.renderer |
Core support for the plug-in renderers used by the
CategoryPlot and XYPlot classes. |
| org.jfree.chart.renderer.category |
Plug-in renderers for the
CategoryPlot class. |
| org.jfree.chart.renderer.xy |
Plug-in renderers for the
XYPlot class. |
| Modifier and Type | Field and Description |
|---|---|
private ItemLabelPosition |
AbstractRenderer.baseNegativeItemLabelPosition
The fallback negative item label position.
|
private ItemLabelPosition |
AbstractRenderer.basePositiveItemLabelPosition
The fallback positive item label position.
|
private ItemLabelPosition |
AbstractRenderer.negativeItemLabelPosition
Deprecated.
This field is redundant, you can rely on the
negativeItemLabelPositionList and baseNegativeItemLabelPosition
fields. Deprecated from version 1.0.6 onwards.
|
private ItemLabelPosition |
AbstractRenderer.positiveItemLabelPosition
Deprecated.
This field is redundant, you can rely on the
positiveItemLabelPositionList and basePositiveItemLabelPosition
fields. Deprecated from version 1.0.6 onwards.
|
| Modifier and Type | Field and 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).
|
| Modifier and Type | Method and Description |
|---|---|
ItemLabelPosition |
AbstractRenderer.getBaseNegativeItemLabelPosition()
Returns the base item label position for negative values.
|
ItemLabelPosition |
AbstractRenderer.getBasePositiveItemLabelPosition()
Returns the base positive item label position.
|
ItemLabelPosition |
AbstractRenderer.getNegativeItemLabelPosition()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.getSeriesNegativeItemLabelPosition(int)
and AbstractRenderer.getBaseNegativeItemLabelPosition(). |
ItemLabelPosition |
AbstractRenderer.getNegativeItemLabelPosition(int row,
int column)
Returns the item label position for negative values.
|
ItemLabelPosition |
AbstractRenderer.getPositiveItemLabelPosition()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.getSeriesPositiveItemLabelPosition(int)
and AbstractRenderer.getBasePositiveItemLabelPosition(). |
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position)
Sets the base item label position for negative values and sends a
RendererChangeEvent to all registered listeners. |
void |
AbstractRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base negative item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
AbstractRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position)
Sets the base positive item label position.
|
void |
AbstractRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base positive item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
AbstractRenderer.setNegativeItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition)
and AbstractRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition). |
void |
AbstractRenderer.setNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition,
boolean) and AbstractRenderer.setBaseNegativeItemLabelPosition(
ItemLabelPosition, boolean). |
void |
AbstractRenderer.setPositiveItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition)
and AbstractRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition). |
void |
AbstractRenderer.setPositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
AbstractRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition,
boolean) and AbstractRenderer.setBasePositiveItemLabelPosition(
ItemLabelPosition, boolean). |
void |
AbstractRenderer.setSeriesNegativeItemLabelPosition(int series,
ItemLabelPosition position)
Sets the item label position for negative values in a series and sends a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent to all registered
listeners. |
| Modifier and Type | Field and 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.
|
| Modifier and Type | Method and Description |
|---|---|
ItemLabelPosition |
CategoryItemRenderer.getBaseNegativeItemLabelPosition()
Returns the base item label position for negative values.
|
ItemLabelPosition |
CategoryItemRenderer.getBasePositiveItemLabelPosition()
Returns the base positive item label position.
|
ItemLabelPosition |
CategoryItemRenderer.getNegativeItemLabelPosition()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.getSeriesNegativeItemLabelPosition(int)
and CategoryItemRenderer.getBaseNegativeItemLabelPosition(). |
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()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.getSeriesPositiveItemLabelPosition(int)
and CategoryItemRenderer.getBasePositiveItemLabelPosition(). |
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CategoryItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position)
Sets the base item label position for negative values and sends a
RendererChangeEvent to all registered listeners. |
void |
CategoryItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base negative item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
CategoryItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position)
Sets the base positive item label position.
|
void |
CategoryItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base positive item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
CategoryItemRenderer.setNegativeItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition)
and CategoryItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition). |
void |
CategoryItemRenderer.setNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition,
boolean) and CategoryItemRenderer.setBaseNegativeItemLabelPosition(
ItemLabelPosition, boolean). |
void |
BarRenderer.setNegativeItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for negative item labels that don't fit
within a bar, and sends a
RendererChangeEvent to all registered
listeners. |
void |
CategoryItemRenderer.setPositiveItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition)
and CategoryItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition). |
void |
CategoryItemRenderer.setPositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
CategoryItemRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition,
boolean) and CategoryItemRenderer.setBasePositiveItemLabelPosition(
ItemLabelPosition, boolean). |
void |
BarRenderer.setPositiveItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for positive item labels that don't fit
within a bar, and sends a
RendererChangeEvent to all registered
listeners. |
void |
CategoryItemRenderer.setSeriesNegativeItemLabelPosition(int series,
ItemLabelPosition position)
Sets the item label position for negative values in a series and sends a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent to all registered
listeners. |
| Modifier and Type | Field and 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.
|
| Modifier and Type | Method and Description |
|---|---|
ItemLabelPosition |
XYItemRenderer.getBaseNegativeItemLabelPosition()
Returns the base item label position for negative values.
|
ItemLabelPosition |
XYItemRenderer.getBasePositiveItemLabelPosition()
Returns the base positive item label position.
|
ItemLabelPosition |
XYItemRenderer.getNegativeItemLabelPosition()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.getSeriesNegativeItemLabelPosition(int)
and XYItemRenderer.getBaseNegativeItemLabelPosition(). |
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()
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.getSeriesPositiveItemLabelPosition(int)
and XYItemRenderer.getBasePositiveItemLabelPosition(). |
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XYItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position)
Sets the base item label position for negative values and sends a
RendererChangeEvent to all registered listeners. |
void |
XYItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base negative item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
XYItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position)
Sets the base positive item label position.
|
void |
XYItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Sets the base positive item label position and, if requested, sends a
RendererChangeEvent to all registered listeners. |
void |
XYItemRenderer.setNegativeItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition)
and XYItemRenderer.setBaseNegativeItemLabelPosition(ItemLabelPosition). |
void |
XYItemRenderer.setNegativeItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.setSeriesNegativeItemLabelPosition(int, ItemLabelPosition,
boolean) and XYItemRenderer.setBaseNegativeItemLabelPosition(
ItemLabelPosition, boolean). |
void |
XYBarRenderer.setNegativeItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for negative item labels that don't fit
within a bar, and sends a
RendererChangeEvent to all registered
listeners. |
void |
XYItemRenderer.setPositiveItemLabelPosition(ItemLabelPosition position)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition)
and XYItemRenderer.setBasePositiveItemLabelPosition(ItemLabelPosition). |
void |
XYItemRenderer.setPositiveItemLabelPosition(ItemLabelPosition position,
boolean notify)
Deprecated.
This method should no longer be used (as of version 1.0.6).
It is sufficient to rely on
XYItemRenderer.setSeriesPositiveItemLabelPosition(int, ItemLabelPosition,
boolean) and XYItemRenderer.setBasePositiveItemLabelPosition(
ItemLabelPosition, boolean). |
void |
XYBarRenderer.setPositiveItemLabelPositionFallback(ItemLabelPosition position)
Sets the fallback position for positive item labels that don't fit
within a bar, and sends a
RendererChangeEvent to all registered
listeners. |
void |
XYItemRenderer.setSeriesNegativeItemLabelPosition(int series,
ItemLabelPosition position)
Sets the item label position for negative values in a series and sends a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent 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 a
RendererChangeEvent to all registered
listeners. |