| java.lang.Object org.jfree.chart.renderer.AbstractRenderer org.jfree.chart.renderer.category.AbstractCategoryItemRenderer org.jfree.chart.renderer.category.BarRenderer org.jfree.chart.renderer.category.WaterfallBarRenderer
Method Summary | |
public void | drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column, int pass) Draws the bar for a single (series, category) data item. | public boolean | equals(Object obj) Tests an object for equality with this instance.
Parameters: obj - the object (null permitted). | public Range | findRangeBounds(CategoryDataset dataset) Returns the range of values the renderer requires to display all the
items from the specified dataset.
Parameters: dataset - the dataset (null not permitted). | public Paint | getFirstBarPaint() Returns the paint used to draw the first bar. | public Paint | getLastBarPaint() Returns the paint used to draw the last bar. | public Paint | getNegativeBarPaint() Returns the paint used to draw bars with negative values. | public Paint | getPositiveBarPaint() Returns the paint used to draw bars with positive values. | public void | setFirstBarPaint(Paint paint) Sets the paint that will be used to draw the first bar and sends a
RendererChangeEvent to all registered listeners. | public void | setLastBarPaint(Paint paint) Sets the paint that will be used to draw the last bar. | public void | setNegativeBarPaint(Paint paint) Sets the paint that will be used to draw bars having negative values. | public void | setPositiveBarPaint(Paint paint) Sets the paint that will be used to draw bars having positive values. |
WaterfallBarRenderer | public WaterfallBarRenderer()(Code) | | Constructs a new renderer with default values for the bar colors.
|
WaterfallBarRenderer | public WaterfallBarRenderer(Paint firstBarPaint, Paint positiveBarPaint, Paint negativeBarPaint, Paint lastBarPaint)(Code) | | Constructs a new waterfall renderer.
Parameters: firstBarPaint - the color of the first bar (null not permitted). Parameters: positiveBarPaint - the color for bars with positive values (null not permitted). Parameters: negativeBarPaint - the color for bars with negative values (null not permitted). Parameters: lastBarPaint - the color of the last bar (null not permitted). |
drawItem | public void drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column, int pass)(Code) | | Draws the bar for a single (series, category) data item.
Parameters: g2 - the graphics device. Parameters: state - the renderer state. Parameters: dataArea - the data area. Parameters: plot - the plot. Parameters: domainAxis - the domain axis. Parameters: rangeAxis - the range axis. Parameters: dataset - the dataset. Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). Parameters: pass - the pass index. |
equals | public boolean equals(Object obj)(Code) | | Tests an object for equality with this instance.
Parameters: obj - the object (null permitted). A boolean. |
findRangeBounds | public Range findRangeBounds(CategoryDataset dataset)(Code) | | Returns the range of values the renderer requires to display all the
items from the specified dataset.
Parameters: dataset - the dataset (null not permitted). The range (or null if the dataset is empty). |
getFirstBarPaint | public Paint getFirstBarPaint()(Code) | | Returns the paint used to draw the first bar.
The paint (never null ). |
getLastBarPaint | public Paint getLastBarPaint()(Code) | | Returns the paint used to draw the last bar.
The paint (never null ). |
getNegativeBarPaint | public Paint getNegativeBarPaint()(Code) | | Returns the paint used to draw bars with negative values.
The paint (never null ). |
getPositiveBarPaint | public Paint getPositiveBarPaint()(Code) | | Returns the paint used to draw bars with positive values.
The paint (never null ). |
setFirstBarPaint | public void setFirstBarPaint(Paint paint)(Code) | | Sets the paint that will be used to draw the first bar and sends a
RendererChangeEvent to all registered listeners.
Parameters: paint - the paint (null not permitted). |
setLastBarPaint | public void setLastBarPaint(Paint paint)(Code) | | Sets the paint that will be used to draw the last bar.
Parameters: paint - the paint (null not permitted). |
setNegativeBarPaint | public void setNegativeBarPaint(Paint paint)(Code) | | Sets the paint that will be used to draw bars having negative values.
Parameters: paint - the paint (null not permitted). |
setPositiveBarPaint | public void setPositiveBarPaint(Paint paint)(Code) | | Sets the paint that will be used to draw bars having positive values.
Parameters: paint - the paint (null not permitted). |
Fields inherited from org.jfree.chart.renderer.category.BarRenderer | final public static double BAR_OUTLINE_WIDTH_THRESHOLD(Code)(Java Doc) final public static double DEFAULT_ITEM_MARGIN(Code)(Java Doc)
|
Methods inherited from org.jfree.chart.renderer.category.BarRenderer | protected double[] calculateBarL0L1(double value)(Code)(Java Doc) protected double calculateBarW0(CategoryPlot plot, PlotOrientation orientation, Rectangle2D dataArea, CategoryAxis domainAxis, CategoryItemRendererState state, int row, int column)(Code)(Java Doc) protected void calculateBarWidth(CategoryPlot plot, Rectangle2D dataArea, int rendererIndex, CategoryItemRendererState state)(Code)(Java Doc) protected double calculateSeriesWidth(double space, CategoryAxis axis, int categories, int series)(Code)(Java Doc) public void drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column, int pass)(Code)(Java Doc) protected void drawItemLabel(Graphics2D g2, CategoryDataset data, int row, int column, CategoryPlot plot, CategoryItemLabelGenerator generator, Rectangle2D bar, boolean negative)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) public Range findRangeBounds(CategoryDataset dataset)(Code)(Java Doc) public double getBase()(Code)(Java Doc) public GradientPaintTransformer getGradientPaintTransformer()(Code)(Java Doc) public boolean getIncludeBaseInRange()(Code)(Java Doc) public double getItemMargin()(Code)(Java Doc) public LegendItem getLegendItem(int datasetIndex, int series)(Code)(Java Doc) public double getLowerClip()(Code)(Java Doc) public double getMaximumBarWidth()(Code)(Java Doc) public double getMinimumBarLength()(Code)(Java Doc) public ItemLabelPosition getNegativeItemLabelPositionFallback()(Code)(Java Doc) public ItemLabelPosition getPositiveItemLabelPositionFallback()(Code)(Java Doc) public double getUpperClip()(Code)(Java Doc) public CategoryItemRendererState initialise(Graphics2D g2, Rectangle2D dataArea, CategoryPlot plot, int rendererIndex, PlotRenderingInfo info)(Code)(Java Doc) public boolean isDrawBarOutline()(Code)(Java Doc) public void setBase(double base)(Code)(Java Doc) public void setDrawBarOutline(boolean draw)(Code)(Java Doc) public void setGradientPaintTransformer(GradientPaintTransformer transformer)(Code)(Java Doc) public void setIncludeBaseInRange(boolean include)(Code)(Java Doc) public void setItemMargin(double percent)(Code)(Java Doc) public void setMaximumBarWidth(double percent)(Code)(Java Doc) public void setMinimumBarLength(double min)(Code)(Java Doc) public void setNegativeItemLabelPositionFallback(ItemLabelPosition position)(Code)(Java Doc) public void setPositiveItemLabelPositionFallback(ItemLabelPosition position)(Code)(Java Doc)
|
Methods inherited from org.jfree.chart.renderer.category.AbstractCategoryItemRenderer | protected void addItemEntity(EntityCollection entities, CategoryDataset dataset, int row, int column, Shape hotspot)(Code)(Java Doc) protected Point2D calculateDomainMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)(Code)(Java Doc) protected Point2D calculateRangeMarkerTextAnchorPoint(Graphics2D g2, PlotOrientation orientation, Rectangle2D dataArea, Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) protected CategoryItemRendererState createState(PlotRenderingInfo info)(Code)(Java Doc) public void drawBackground(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)(Code)(Java Doc) public void drawDomainGridline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea, double value)(Code)(Java Doc) public void drawDomainMarker(Graphics2D g2, CategoryPlot plot, CategoryAxis axis, CategoryMarker marker, Rectangle2D dataArea)(Code)(Java Doc) protected void drawItemLabel(Graphics2D g2, PlotOrientation orientation, CategoryDataset dataset, int row, int column, double x, double y, boolean negative)(Code)(Java Doc) public void drawOutline(Graphics2D g2, CategoryPlot plot, Rectangle2D dataArea)(Code)(Java Doc) public void drawRangeGridline(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Rectangle2D dataArea, double value)(Code)(Java Doc) public void drawRangeMarker(Graphics2D g2, CategoryPlot plot, ValueAxis axis, Marker marker, Rectangle2D dataArea)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) public Range findRangeBounds(CategoryDataset dataset)(Code)(Java Doc) public CategoryItemLabelGenerator getBaseItemLabelGenerator()(Code)(Java Doc) public CategoryURLGenerator getBaseItemURLGenerator()(Code)(Java Doc) public CategoryToolTipGenerator getBaseToolTipGenerator()(Code)(Java Doc) public int getColumnCount()(Code)(Java Doc) protected CategoryAxis getDomainAxis(CategoryPlot plot, int index)(Code)(Java Doc) public DrawingSupplier getDrawingSupplier()(Code)(Java Doc) public CategoryItemLabelGenerator getItemLabelGenerator(int row, int column)(Code)(Java Doc) public CategoryURLGenerator getItemURLGenerator(int row, int column)(Code)(Java Doc) public LegendItem getLegendItem(int datasetIndex, int series)(Code)(Java Doc) public CategorySeriesLabelGenerator getLegendItemLabelGenerator()(Code)(Java Doc) public CategorySeriesLabelGenerator getLegendItemToolTipGenerator()(Code)(Java Doc) public CategorySeriesLabelGenerator getLegendItemURLGenerator()(Code)(Java Doc) public LegendItemCollection getLegendItems()(Code)(Java Doc) public int getPassCount()(Code)(Java Doc) public CategoryPlot getPlot()(Code)(Java Doc) protected ValueAxis getRangeAxis(CategoryPlot plot, int index)(Code)(Java Doc) public int getRowCount()(Code)(Java Doc) public CategoryItemLabelGenerator getSeriesItemLabelGenerator(int series)(Code)(Java Doc) public CategoryURLGenerator getSeriesItemURLGenerator(int series)(Code)(Java Doc) public CategoryToolTipGenerator getSeriesToolTipGenerator(int series)(Code)(Java Doc) public CategoryToolTipGenerator getToolTipGenerator(int row, int column)(Code)(Java Doc) public CategoryToolTipGenerator getToolTipGenerator()(Code)(Java Doc) public int hashCode()(Code)(Java Doc) public CategoryItemRendererState initialise(Graphics2D g2, Rectangle2D dataArea, CategoryPlot plot, int rendererIndex, PlotRenderingInfo info)(Code)(Java Doc) public void setBaseItemLabelGenerator(CategoryItemLabelGenerator generator)(Code)(Java Doc) public void setBaseItemURLGenerator(CategoryURLGenerator generator)(Code)(Java Doc) public void setBaseToolTipGenerator(CategoryToolTipGenerator generator)(Code)(Java Doc) public void setItemLabelGenerator(CategoryItemLabelGenerator generator)(Code)(Java Doc) public void setItemURLGenerator(CategoryURLGenerator generator)(Code)(Java Doc) public void setLegendItemLabelGenerator(CategorySeriesLabelGenerator generator)(Code)(Java Doc) public void setLegendItemToolTipGenerator(CategorySeriesLabelGenerator generator)(Code)(Java Doc) public void setLegendItemURLGenerator(CategorySeriesLabelGenerator generator)(Code)(Java Doc) public void setPlot(CategoryPlot plot)(Code)(Java Doc) public void setSeriesItemLabelGenerator(int series, CategoryItemLabelGenerator generator)(Code)(Java Doc) public void setSeriesItemURLGenerator(int series, CategoryURLGenerator generator)(Code)(Java Doc) public void setSeriesToolTipGenerator(int series, CategoryToolTipGenerator generator)(Code)(Java Doc) public void setToolTipGenerator(CategoryToolTipGenerator generator)(Code)(Java Doc)
|
Methods inherited from org.jfree.chart.renderer.AbstractRenderer | public void addChangeListener(RendererChangeListener listener)(Code)(Java Doc) protected Point2D calculateLabelAnchorPoint(ItemLabelAnchor anchor, double x, double y, PlotOrientation orientation)(Code)(Java Doc) protected Object clone() throws CloneNotSupportedException(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) protected void fireChangeEvent()(Code)(Java Doc) public boolean getAutoPopulateSeriesFillPaint()(Code)(Java Doc) public boolean getAutoPopulateSeriesOutlinePaint()(Code)(Java Doc) public boolean getAutoPopulateSeriesOutlineStroke()(Code)(Java Doc) public boolean getAutoPopulateSeriesPaint()(Code)(Java Doc) public boolean getAutoPopulateSeriesShape()(Code)(Java Doc) public boolean getAutoPopulateSeriesStroke()(Code)(Java Doc) public boolean getBaseCreateEntities()(Code)(Java Doc) public Paint getBaseFillPaint()(Code)(Java Doc) public Font getBaseItemLabelFont()(Code)(Java Doc) public Paint getBaseItemLabelPaint()(Code)(Java Doc) public Boolean getBaseItemLabelsVisible()(Code)(Java Doc) public ItemLabelPosition getBaseNegativeItemLabelPosition()(Code)(Java Doc) public Paint getBaseOutlinePaint()(Code)(Java Doc) public Stroke getBaseOutlineStroke()(Code)(Java Doc) public Paint getBasePaint()(Code)(Java Doc) public ItemLabelPosition getBasePositiveItemLabelPosition()(Code)(Java Doc) public boolean getBaseSeriesVisible()(Code)(Java Doc) public boolean getBaseSeriesVisibleInLegend()(Code)(Java Doc) public Shape getBaseShape()(Code)(Java Doc) public Stroke getBaseStroke()(Code)(Java Doc) public Boolean getCreateEntities()(Code)(Java Doc) abstract public DrawingSupplier getDrawingSupplier()(Code)(Java Doc) public boolean getItemCreateEntity(int series, int item)(Code)(Java Doc) public Paint getItemFillPaint(int row, int column)(Code)(Java Doc) public double getItemLabelAnchorOffset()(Code)(Java Doc) public Font getItemLabelFont(int row, int column)(Code)(Java Doc) public Font getItemLabelFont()(Code)(Java Doc) public Paint getItemLabelPaint(int row, int column)(Code)(Java Doc) public Paint getItemLabelPaint()(Code)(Java Doc) public Paint getItemOutlinePaint(int row, int column)(Code)(Java Doc) public Stroke getItemOutlineStroke(int row, int column)(Code)(Java Doc) public Paint getItemPaint(int row, int column)(Code)(Java Doc) public Shape getItemShape(int row, int column)(Code)(Java Doc) public Stroke getItemStroke(int row, int column)(Code)(Java Doc) public boolean getItemVisible(int series, int item)(Code)(Java Doc) public ItemLabelPosition getNegativeItemLabelPosition(int row, int column)(Code)(Java Doc) public ItemLabelPosition getNegativeItemLabelPosition()(Code)(Java Doc) public ItemLabelPosition getPositiveItemLabelPosition(int row, int column)(Code)(Java Doc) public ItemLabelPosition getPositiveItemLabelPosition()(Code)(Java Doc) public Boolean getSeriesCreateEntities(int series)(Code)(Java Doc) public Paint getSeriesFillPaint(int series)(Code)(Java Doc) public Font getSeriesItemLabelFont(int series)(Code)(Java Doc) public Paint getSeriesItemLabelPaint(int series)(Code)(Java Doc) public ItemLabelPosition getSeriesNegativeItemLabelPosition(int series)(Code)(Java Doc) public Paint getSeriesOutlinePaint(int series)(Code)(Java Doc) public Stroke getSeriesOutlineStroke(int series)(Code)(Java Doc) public Paint getSeriesPaint(int series)(Code)(Java Doc) public ItemLabelPosition getSeriesPositiveItemLabelPosition(int series)(Code)(Java Doc) public Shape getSeriesShape(int series)(Code)(Java Doc) public Stroke getSeriesStroke(int series)(Code)(Java Doc) public Boolean getSeriesVisible()(Code)(Java Doc) public Boolean getSeriesVisible(int series)(Code)(Java Doc) public Boolean getSeriesVisibleInLegend()(Code)(Java Doc) public Boolean getSeriesVisibleInLegend(int series)(Code)(Java Doc) public boolean hasListener(EventListener listener)(Code)(Java Doc) public int hashCode()(Code)(Java Doc) public boolean isItemLabelVisible(int row, int column)(Code)(Java Doc) public boolean isSeriesItemLabelsVisible(int series)(Code)(Java Doc) public boolean isSeriesVisible(int series)(Code)(Java Doc) public boolean isSeriesVisibleInLegend(int series)(Code)(Java Doc) public Paint lookupSeriesFillPaint(int series)(Code)(Java Doc) public Paint lookupSeriesOutlinePaint(int series)(Code)(Java Doc) public Stroke lookupSeriesOutlineStroke(int series)(Code)(Java Doc) public Paint lookupSeriesPaint(int series)(Code)(Java Doc) public Shape lookupSeriesShape(int series)(Code)(Java Doc) public Stroke lookupSeriesStroke(int series)(Code)(Java Doc) public void notifyListeners(RendererChangeEvent event)(Code)(Java Doc) public void removeChangeListener(RendererChangeListener listener)(Code)(Java Doc) public void setAutoPopulateSeriesFillPaint(boolean auto)(Code)(Java Doc) public void setAutoPopulateSeriesOutlinePaint(boolean auto)(Code)(Java Doc) public void setAutoPopulateSeriesOutlineStroke(boolean auto)(Code)(Java Doc) public void setAutoPopulateSeriesPaint(boolean auto)(Code)(Java Doc) public void setAutoPopulateSeriesShape(boolean auto)(Code)(Java Doc) public void setAutoPopulateSeriesStroke(boolean auto)(Code)(Java Doc) public void setBaseCreateEntities(boolean create)(Code)(Java Doc) public void setBaseCreateEntities(boolean create, boolean notify)(Code)(Java Doc) public void setBaseFillPaint(Paint paint)(Code)(Java Doc) public void setBaseFillPaint(Paint paint, boolean notify)(Code)(Java Doc) public void setBaseItemLabelFont(Font font)(Code)(Java Doc) public void setBaseItemLabelFont(Font font, boolean notify)(Code)(Java Doc) public void setBaseItemLabelPaint(Paint paint)(Code)(Java Doc) public void setBaseItemLabelPaint(Paint paint, boolean notify)(Code)(Java Doc) public void setBaseItemLabelsVisible(boolean visible)(Code)(Java Doc) public void setBaseItemLabelsVisible(Boolean visible)(Code)(Java Doc) public void setBaseItemLabelsVisible(Boolean visible, boolean notify)(Code)(Java Doc) public void setBaseNegativeItemLabelPosition(ItemLabelPosition position)(Code)(Java Doc) public void setBaseNegativeItemLabelPosition(ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setBaseOutlinePaint(Paint paint)(Code)(Java Doc) public void setBaseOutlinePaint(Paint paint, boolean notify)(Code)(Java Doc) public void setBaseOutlineStroke(Stroke stroke)(Code)(Java Doc) public void setBaseOutlineStroke(Stroke stroke, boolean notify)(Code)(Java Doc) public void setBasePaint(Paint paint)(Code)(Java Doc) public void setBasePaint(Paint paint, boolean notify)(Code)(Java Doc) public void setBasePositiveItemLabelPosition(ItemLabelPosition position)(Code)(Java Doc) public void setBasePositiveItemLabelPosition(ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setBaseSeriesVisible(boolean visible)(Code)(Java Doc) public void setBaseSeriesVisible(boolean visible, boolean notify)(Code)(Java Doc) public void setBaseSeriesVisibleInLegend(boolean visible)(Code)(Java Doc) public void setBaseSeriesVisibleInLegend(boolean visible, boolean notify)(Code)(Java Doc) public void setBaseShape(Shape shape)(Code)(Java Doc) public void setBaseShape(Shape shape, boolean notify)(Code)(Java Doc) public void setBaseStroke(Stroke stroke)(Code)(Java Doc) public void setBaseStroke(Stroke stroke, boolean notify)(Code)(Java Doc) public void setCreateEntities(Boolean create)(Code)(Java Doc) public void setCreateEntities(Boolean create, boolean notify)(Code)(Java Doc) public void setFillPaint(Paint paint)(Code)(Java Doc) public void setFillPaint(Paint paint, boolean notify)(Code)(Java Doc) public void setItemLabelAnchorOffset(double offset)(Code)(Java Doc) public void setItemLabelFont(Font font)(Code)(Java Doc) public void setItemLabelFont(Font font, boolean notify)(Code)(Java Doc) public void setItemLabelPaint(Paint paint)(Code)(Java Doc) public void setItemLabelPaint(Paint paint, boolean notify)(Code)(Java Doc) public void setItemLabelsVisible(boolean visible)(Code)(Java Doc) public void setItemLabelsVisible(Boolean visible)(Code)(Java Doc) public void setItemLabelsVisible(Boolean visible, boolean notify)(Code)(Java Doc) public void setNegativeItemLabelPosition(ItemLabelPosition position)(Code)(Java Doc) public void setNegativeItemLabelPosition(ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setOutlinePaint(Paint paint)(Code)(Java Doc) public void setOutlinePaint(Paint paint, boolean notify)(Code)(Java Doc) public void setOutlineStroke(Stroke stroke)(Code)(Java Doc) public void setOutlineStroke(Stroke stroke, boolean notify)(Code)(Java Doc) public void setPaint(Paint paint)(Code)(Java Doc) public void setPaint(Paint paint, boolean notify)(Code)(Java Doc) public void setPositiveItemLabelPosition(ItemLabelPosition position)(Code)(Java Doc) public void setPositiveItemLabelPosition(ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setSeriesCreateEntities(int series, Boolean create)(Code)(Java Doc) public void setSeriesCreateEntities(int series, Boolean create, boolean notify)(Code)(Java Doc) public void setSeriesFillPaint(int series, Paint paint)(Code)(Java Doc) public void setSeriesFillPaint(int series, Paint paint, boolean notify)(Code)(Java Doc) public void setSeriesItemLabelFont(int series, Font font)(Code)(Java Doc) public void setSeriesItemLabelFont(int series, Font font, boolean notify)(Code)(Java Doc) public void setSeriesItemLabelPaint(int series, Paint paint)(Code)(Java Doc) public void setSeriesItemLabelPaint(int series, Paint paint, boolean notify)(Code)(Java Doc) public void setSeriesItemLabelsVisible(int series, boolean visible)(Code)(Java Doc) public void setSeriesItemLabelsVisible(int series, Boolean visible)(Code)(Java Doc) public void setSeriesItemLabelsVisible(int series, Boolean visible, boolean notify)(Code)(Java Doc) public void setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position)(Code)(Java Doc) public void setSeriesNegativeItemLabelPosition(int series, ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setSeriesOutlinePaint(int series, Paint paint)(Code)(Java Doc) public void setSeriesOutlinePaint(int series, Paint paint, boolean notify)(Code)(Java Doc) public void setSeriesOutlineStroke(int series, Stroke stroke)(Code)(Java Doc) public void setSeriesOutlineStroke(int series, Stroke stroke, boolean notify)(Code)(Java Doc) public void setSeriesPaint(int series, Paint paint)(Code)(Java Doc) public void setSeriesPaint(int series, Paint paint, boolean notify)(Code)(Java Doc) public void setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position)(Code)(Java Doc) public void setSeriesPositiveItemLabelPosition(int series, ItemLabelPosition position, boolean notify)(Code)(Java Doc) public void setSeriesShape(int series, Shape shape)(Code)(Java Doc) public void setSeriesShape(int series, Shape shape, boolean notify)(Code)(Java Doc) public void setSeriesStroke(int series, Stroke stroke)(Code)(Java Doc) public void setSeriesStroke(int series, Stroke stroke, boolean notify)(Code)(Java Doc) public void setSeriesVisible(Boolean visible)(Code)(Java Doc) public void setSeriesVisible(Boolean visible, boolean notify)(Code)(Java Doc) public void setSeriesVisible(int series, Boolean visible)(Code)(Java Doc) public void setSeriesVisible(int series, Boolean visible, boolean notify)(Code)(Java Doc) public void setSeriesVisibleInLegend(Boolean visible)(Code)(Java Doc) public void setSeriesVisibleInLegend(Boolean visible, boolean notify)(Code)(Java Doc) public void setSeriesVisibleInLegend(int series, Boolean visible)(Code)(Java Doc) public void setSeriesVisibleInLegend(int series, Boolean visible, boolean notify)(Code)(Java Doc) public void setShape(Shape shape)(Code)(Java Doc) public void setShape(Shape shape, boolean notify)(Code)(Java Doc) public void setStroke(Stroke stroke)(Code)(Java Doc) public void setStroke(Stroke stroke, boolean notify)(Code)(Java Doc)
|
|
|