Java Doc for WaterfallBarRenderer.java in  » Chart » jfreechart » org » jfree » chart » renderer » category » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Chart » jfreechart » org.jfree.chart.renderer.category 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


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

WaterfallBarRenderer
public class WaterfallBarRenderer extends BarRenderer implements Cloneable,PublicCloneable,Serializable(Code)
A renderer that handles the drawing of waterfall bar charts, for use with the CategoryPlot class. Note that the bar colors are defined using special methods in this class - the inherited methods (for example, AbstractRenderer.setSeriesPaint(intPaint) ) are ignored.



Constructor Summary
public  WaterfallBarRenderer()
     Constructs a new renderer with default values for the bar colors.
public  WaterfallBarRenderer(Paint firstBarPaint, Paint positiveBarPaint, Paint negativeBarPaint, Paint lastBarPaint)
     Constructs a new waterfall renderer.

Method Summary
public  voiddrawItem(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  booleanequals(Object obj)
     Tests an object for equality with this instance.
Parameters:
  obj - the object (null permitted).
public  RangefindRangeBounds(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  PaintgetFirstBarPaint()
     Returns the paint used to draw the first bar.
public  PaintgetLastBarPaint()
     Returns the paint used to draw the last bar.
public  PaintgetNegativeBarPaint()
     Returns the paint used to draw bars with negative values.
public  PaintgetPositiveBarPaint()
     Returns the paint used to draw bars with positive values.
public  voidsetFirstBarPaint(Paint paint)
     Sets the paint that will be used to draw the first bar and sends a RendererChangeEvent to all registered listeners.
public  voidsetLastBarPaint(Paint paint)
     Sets the paint that will be used to draw the last bar.
public  voidsetNegativeBarPaint(Paint paint)
     Sets the paint that will be used to draw bars having negative values.
public  voidsetPositiveBarPaint(Paint paint)
     Sets the paint that will be used to draw bars having positive values.


Constructor Detail
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).




Method Detail
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)

Fields inherited from org.jfree.chart.renderer.AbstractRenderer
final public static Paint DEFAULT_OUTLINE_PAINT(Code)(Java Doc)
final public static Stroke DEFAULT_OUTLINE_STROKE(Code)(Java Doc)
final public static Paint DEFAULT_PAINT(Code)(Java Doc)
final public static Shape DEFAULT_SHAPE(Code)(Java Doc)
final public static Stroke DEFAULT_STROKE(Code)(Java Doc)
final public static Font DEFAULT_VALUE_LABEL_FONT(Code)(Java Doc)
final public static Paint DEFAULT_VALUE_LABEL_PAINT(Code)(Java Doc)
final public static Double ZERO(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)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.