| org.pentaho.plugin.jfreechart.BubbleRenderer
BubbleRenderer | public class BubbleRenderer extends XYBubbleRenderer (Code) | | author: klosei |
Method Summary | |
public void | drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass) Draws the visual representation of a single data item. | public double | getMaxSize() | public double | getMaxZ() | public void | setMaxSize(double size) | public void | setMaxZ(double maxZ) |
BubbleRenderer | public BubbleRenderer()(Code) | | |
drawItem | public void drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)(Code) | | Draws the visual representation of a single data item.
Parameters: g2 - the graphics device. Parameters: state - the renderer state. Parameters: dataArea - the area within which the data is being drawn. Parameters: info - collects information about the drawing. Parameters: plot - the plot (can be used to obtain standard colorinformation etc). Parameters: domainAxis - the domain (horizontal) axis. Parameters: rangeAxis - the range (vertical) axis. Parameters: dataset - the dataset (an XYZDataset is expected). Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). Parameters: crosshairState - crosshair information for the plot(null permitted). Parameters: pass - the pass index. |
getMaxSize | public double getMaxSize()(Code) | | |
getMaxZ | public double getMaxZ()(Code) | | |
setMaxSize | public void setMaxSize(double size)(Code) | | Parameters: size - |
setMaxZ | public void setMaxZ(double maxZ)(Code) | | Parameters: maxZ - |
|
|