|
Header
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jfree.chart.renderer.AbstractRenderer
org.jfree.chart.renderer.category.AbstractCategoryItemRenderer
org.jfree.chart.renderer.category.LineAndShapeRenderer
public class LineAndShapeRenderer
A renderer that draws shapes for each data item, and lines between data
items (for use with the CategoryPlot
class).
The example shown here is generated by the LineChartDemo1.java
program included in the JFreeChart Demo Collection:
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 | |
---|---|
LineAndShapeRenderer()
Creates a renderer with both lines and shapes visible by default. |
|
LineAndShapeRenderer(boolean lines,
boolean shapes)
Creates a new renderer with lines and/or shapes visible. |
Method Summary | |
---|---|
java.lang.Object |
clone()
Returns an independent copy of the renderer. |
void |
drawItem(java.awt.Graphics2D g2,
CategoryItemRendererState state,
java.awt.geom.Rectangle2D dataArea,
CategoryPlot plot,
CategoryAxis domainAxis,
ValueAxis rangeAxis,
CategoryDataset dataset,
int row,
int column,
int pass)
Draw a single data item. |
boolean |
equals(java.lang.Object obj)
Tests this renderer for equality with an arbitrary object. |
boolean |
getBaseLinesVisible()
Returns the base 'lines visible' attribute. |
boolean |
getBaseShapesFilled()
Returns the base 'shape filled' attribute. |
boolean |
getBaseShapesVisible()
Returns the base 'shape visible' attribute. |
boolean |
getDrawOutlines()
Returns true if outlines should be drawn for shapes, and
false otherwise. |
boolean |
getItemLineVisible(int series,
int item)
Returns the flag used to control whether or not the line for an item is visible. |
double |
getItemMargin()
Returns the item margin, which is the gap between items within a category (expressed as a percentage of the overall category width). |
boolean |
getItemShapeFilled(int series,
int item)
Returns the flag used to control whether or not the shape for an item is filled. |
boolean |
getItemShapeVisible(int series,
int item)
Returns the flag used to control whether or not the shape for an item is visible. |
LegendItem |
getLegendItem(int datasetIndex,
int series)
Returns a legend item for a series. |
java.lang.Boolean |
getLinesVisible()
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
int |
getPassCount()
This renderer uses two passes to draw the data. |
java.lang.Boolean |
getSeriesLinesVisible(int series)
Returns the flag used to control whether or not the lines for a series are visible. |
boolean |
getSeriesShapesFilled(int series)
Returns the flag used to control whether or not the shapes for a series are filled. |
java.lang.Boolean |
getSeriesShapesVisible(int series)
Returns the flag used to control whether or not the shapes for a series are visible. |
java.lang.Boolean |
getShapesFilled()
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
java.lang.Boolean |
getShapesVisible()
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
boolean |
getUseFillPaint()
Returns true if the renderer should use the fill paint
setting to fill shapes, and false if it should just
use the regular paint. |
boolean |
getUseOutlinePaint()
Returns the flag that controls whether the outline paint is used for shape outlines. |
boolean |
getUseSeriesOffset()
Returns the flag that controls whether or not the x-position for each data item is offset within the category according to the series. |
void |
setBaseLinesVisible(boolean flag)
Sets the base 'lines visible' flag and sends a RendererChangeEvent to all registered listeners. |
void |
setBaseShapesFilled(boolean flag)
Sets the base 'shapes filled' flag and sends a RendererChangeEvent to all registered listeners. |
void |
setBaseShapesVisible(boolean flag)
Sets the base 'shapes visible' flag and sends a RendererChangeEvent to all registered listeners. |
void |
setDrawOutlines(boolean flag)
Sets the flag that controls whether outlines are drawn for shapes, and sends a RendererChangeEvent to all registered
listeners. |
void |
setItemMargin(double margin)
Sets the item margin, which is the gap between items within a category (expressed as a percentage of the overall category width), and sends a RendererChangeEvent to all registered listeners. |
void |
setLinesVisible(boolean visible)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setLinesVisible(java.lang.Boolean visible)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setSeriesLinesVisible(int series,
boolean visible)
Sets the 'lines visible' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setSeriesLinesVisible(int series,
java.lang.Boolean flag)
Sets the 'lines visible' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setSeriesShapesFilled(int series,
boolean filled)
Sets the 'shapes filled' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setSeriesShapesFilled(int series,
java.lang.Boolean filled)
Sets the 'shapes filled' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setSeriesShapesVisible(int series,
boolean visible)
Sets the 'shapes visible' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setSeriesShapesVisible(int series,
java.lang.Boolean flag)
Sets the 'shapes visible' flag for a series and sends a RendererChangeEvent to all registered listeners. |
void |
setShapesFilled(boolean filled)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setShapesFilled(java.lang.Boolean filled)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setShapesVisible(boolean visible)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setShapesVisible(java.lang.Boolean visible)
Deprecated. As of 1.0.7 (the override facility is unnecessary, just use the per-series and base (default) settings). |
void |
setUseFillPaint(boolean flag)
Sets the flag that controls whether the fill paint is used to fill shapes, and sends a RendererChangeEvent to all
registered listeners. |
void |
setUseOutlinePaint(boolean use)
Sets the flag that controls whether the outline paint is used for shape outlines, and sends a RendererChangeEvent to all registered
listeners. |
void |
setUseSeriesOffset(boolean offset)
Sets the flag that controls whether or not the x-position for each data item is offset within its category according to the series, and sends a RendererChangeEvent to all registered listeners. |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LineAndShapeRenderer()
public LineAndShapeRenderer(boolean lines, boolean shapes)
lines
- draw lines?shapes
- draw shapes?Method Detail |
---|
public boolean getItemLineVisible(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).
public java.lang.Boolean getLinesVisible()
null
, then the "per series"
settings will apply.
null
).setLinesVisible(Boolean)
public void setLinesVisible(java.lang.Boolean visible)
RendererChangeEvent
to all
registered listeners. You need to set this to null
if you
want the "per series" settings to apply.
visible
- the flag (null
permitted).getLinesVisible()
public void setLinesVisible(boolean visible)
RendererChangeEvent
to all
registered listeners.
visible
- the flag.getLinesVisible()
public java.lang.Boolean getSeriesLinesVisible(int series)
series
- the series index (zero-based).
null
).setSeriesLinesVisible(int, Boolean)
public void setSeriesLinesVisible(int series, java.lang.Boolean flag)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).flag
- the flag (null
permitted).getSeriesLinesVisible(int)
public void setSeriesLinesVisible(int series, boolean visible)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).visible
- the flag.getSeriesLinesVisible(int)
public boolean getBaseLinesVisible()
getBaseLinesVisible()
public void setBaseLinesVisible(boolean flag)
RendererChangeEvent
to all registered listeners.
flag
- the flag.getBaseLinesVisible()
public boolean getItemShapeVisible(int series, int item)
series
- the series index (zero-based).item
- the item index (zero-based).
public java.lang.Boolean getShapesVisible()
null
).setShapesVisible(Boolean)
public void setShapesVisible(java.lang.Boolean visible)
RendererChangeEvent
to all registered listeners.
visible
- the flag (null
permitted).getShapesVisible()
public void setShapesVisible(boolean visible)
RendererChangeEvent
to all registered listeners.
visible
- the flag.getShapesVisible()
public java.lang.Boolean getSeriesShapesVisible(int series)
series
- the series index (zero-based).
setSeriesShapesVisible(int, Boolean)
public void setSeriesShapesVisible(int series, boolean visible)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).visible
- the flag.getSeriesShapesVisible(int)
public void setSeriesShapesVisible(int series, java.lang.Boolean flag)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).flag
- the flag.getSeriesShapesVisible(int)
public boolean getBaseShapesVisible()
setBaseShapesVisible(boolean)
public void setBaseShapesVisible(boolean flag)
RendererChangeEvent
to all registered listeners.
flag
- the flag.getBaseShapesVisible()
public boolean getDrawOutlines()
true
if outlines should be drawn for shapes, and
false
otherwise.
setDrawOutlines(boolean)
public void setDrawOutlines(boolean flag)
RendererChangeEvent
to all registered
listeners.
In some cases, shapes look better if they do NOT have an outline, but this flag allows you to set your own preference.
flag
- the flag.getDrawOutlines()
public boolean getUseOutlinePaint()
setUseOutlinePaint(boolean)
public void setUseOutlinePaint(boolean use)
RendererChangeEvent
to all registered
listeners.
use
- the flag.getUseOutlinePaint()
public boolean getItemShapeFilled(int series, int item)
getSeriesShapesFilled
method. You can override this method
if you require different behaviour.
series
- the series index (zero-based).item
- the item index (zero-based).
public boolean getSeriesShapesFilled(int series)
series
- the series index (zero-based).
public java.lang.Boolean getShapesFilled()
setShapesFilled(Boolean)
public void setShapesFilled(boolean filled)
RendererChangeEvent
to all registered listeners.
filled
- the flag.getShapesFilled()
public void setShapesFilled(java.lang.Boolean filled)
RendererChangeEvent
to all registered listeners.
filled
- the flag (null
permitted).getShapesFilled()
public void setSeriesShapesFilled(int series, java.lang.Boolean filled)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).filled
- the flag.getSeriesShapesFilled(int)
public void setSeriesShapesFilled(int series, boolean filled)
RendererChangeEvent
to all registered listeners.
series
- the series index (zero-based).filled
- the flag.getSeriesShapesFilled(int)
public boolean getBaseShapesFilled()
setBaseShapesFilled(boolean)
public void setBaseShapesFilled(boolean flag)
RendererChangeEvent
to all registered listeners.
flag
- the flag.getBaseShapesFilled()
public boolean getUseFillPaint()
true
if the renderer should use the fill paint
setting to fill shapes, and false
if it should just
use the regular paint.
setUseFillPaint(boolean)
public void setUseFillPaint(boolean flag)
RendererChangeEvent
to all
registered listeners.
flag
- the flag.getUseFillPaint()
public boolean getUseSeriesOffset()
setUseSeriesOffset(boolean)
public void setUseSeriesOffset(boolean offset)
RendererChangeEvent
to all registered listeners.
offset
- the offset.getUseSeriesOffset()
public double getItemMargin()
BarRenderer
).
setItemMargin(double)
,
getUseSeriesOffset()
public void setItemMargin(double margin)
RendererChangeEvent
to all registered listeners.
margin
- the margin (0.0 <= margin < 1.0).getItemMargin()
,
getUseSeriesOffset()
public LegendItem getLegendItem(int datasetIndex, int series)
getLegendItem
in interface CategoryItemRenderer
getLegendItem
in class AbstractCategoryItemRenderer
datasetIndex
- the dataset index (zero-based).series
- the series index (zero-based).
AbstractCategoryItemRenderer.getLegendItems()
public int getPassCount()
getPassCount
in interface CategoryItemRenderer
getPassCount
in class AbstractCategoryItemRenderer
2
for this renderer).public void drawItem(java.awt.Graphics2D g2, CategoryItemRendererState state, java.awt.geom.Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column, int pass)
drawItem
in interface CategoryItemRenderer
g2
- the graphics device.state
- the renderer state.dataArea
- the area in which the data is drawn.plot
- the plot.domainAxis
- the domain axis.rangeAxis
- the range axis.dataset
- the dataset.row
- the row index (zero-based).column
- the column index (zero-based).pass
- the pass index.public boolean equals(java.lang.Object obj)
equals
in class AbstractCategoryItemRenderer
obj
- the object (null
permitted).
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in interface org.jfree.util.PublicCloneable
clone
in class AbstractCategoryItemRenderer
java.lang.CloneNotSupportedException
- should not happen.
|
Footer
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |