Java Doc for CombinedDomainCategoryPlot.java in  » Chart » jfreechart » org » jfree » chart » plot » 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.plot 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jfree.chart.plot.Plot
      org.jfree.chart.plot.CategoryPlot
         org.jfree.chart.plot.CombinedDomainCategoryPlot

CombinedDomainCategoryPlot
public class CombinedDomainCategoryPlot extends CategoryPlot implements Zoomable,Cloneable,PublicCloneable,Serializable,PlotChangeListener(Code)
A combined category plot where the domain axis is shared.



Constructor Summary
public  CombinedDomainCategoryPlot()
     Default constructor.
public  CombinedDomainCategoryPlot(CategoryAxis domainAxis)
     Creates a new plot.

Method Summary
public  voidadd(CategoryPlot subplot)
     Adds a subplot to the combined chart and sends a PlotChangeEvent to all registered listeners.

The domain axis for the subplot will be set to null.
public  voidadd(CategoryPlot subplot, int weight)
     Adds a subplot to the combined chart and sends a PlotChangeEvent to all registered listeners.

The domain axis for the subplot will be set to null.
protected  AxisSpacecalculateAxisSpace(Graphics2D g2, Rectangle2D plotArea)
     Calculates the space required for the axes.
Parameters:
  g2 - the graphics device.
Parameters:
  plotArea - the plot area.
public  Objectclone()
     Returns a clone of the plot.
public  voiddraw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)
     Draws the plot on a Java 2D graphics device (such as the screen or a printer).
public  booleanequals(Object obj)
     Tests the plot for equality with an arbitrary object.
Parameters:
  obj - the object (null permitted).
public  CategoryPlotfindSubplot(PlotRenderingInfo info, Point2D source)
     Returns the subplot (if any) that contains the (x, y) point (specified in Java2D space).
Parameters:
  info - the chart rendering info (null not permitted).
Parameters:
  source - the source point (null not permitted).
public  ListgetCategories()
     Returns an unmodifiable list of the categories contained in all the subplots.
public  ListgetCategoriesForAxis(CategoryAxis axis)
     Overridden to return the categories in the subplots.
Parameters:
  axis - ignored.
public  doublegetGap()
     Returns the space between subplots.
public  LegendItemCollectiongetLegendItems()
     Returns a collection of legend items for the plot.
public  ListgetSubplots()
     Returns the list of subplots.
public  voidhandleClick(int x, int y, PlotRenderingInfo info)
     Handles a 'click' on the plot.
public  voidplotChanged(PlotChangeEvent event)
     Receives a PlotChangeEvent and responds by notifying all listeners.
public  voidremove(CategoryPlot subplot)
     Removes a subplot from the combined chart.
protected  voidsetFixedRangeAxisSpaceForSubplots(AxisSpace space)
     Sets the size (width or height, depending on the orientation of the plot) for the range axis of each subplot.
public  voidsetGap(double gap)
     Sets the amount of space between subplots and sends a PlotChangeEvent to all registered listeners.
public  voidsetOrientation(PlotOrientation orientation)
     Sets the orientation of the plot (and all subplots).
public  voidzoomRangeAxes(double factor, PlotRenderingInfo info, Point2D source)
     Multiplies the range on the range axis/axes by the specified factor.
public  voidzoomRangeAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)
     Zooms in on the range axes.


Constructor Detail
CombinedDomainCategoryPlot
public CombinedDomainCategoryPlot()(Code)
Default constructor.



CombinedDomainCategoryPlot
public CombinedDomainCategoryPlot(CategoryAxis domainAxis)(Code)
Creates a new plot.
Parameters:
  domainAxis - the shared domain axis (null not permitted).




Method Detail
add
public void add(CategoryPlot subplot)(Code)
Adds a subplot to the combined chart and sends a PlotChangeEvent to all registered listeners.

The domain axis for the subplot will be set to null. You must ensure that the subplot has a non-null range axis.
Parameters:
  subplot - the subplot (null not permitted).



add
public void add(CategoryPlot subplot, int weight)(Code)
Adds a subplot to the combined chart and sends a PlotChangeEvent to all registered listeners.

The domain axis for the subplot will be set to null. You must ensure that the subplot has a non-null range axis.
Parameters:
  subplot - the subplot (null not permitted).
Parameters:
  weight - the weight (must be >= 1).



calculateAxisSpace
protected AxisSpace calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea)(Code)
Calculates the space required for the axes.
Parameters:
  g2 - the graphics device.
Parameters:
  plotArea - the plot area. The space required for the axes.



clone
public Object clone() throws CloneNotSupportedException(Code)
Returns a clone of the plot. A clone.
throws:
  CloneNotSupportedException - this class will not throw this exception, but subclasses (if any) might.



draw
public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)(Code)
Draws the plot on a Java 2D graphics device (such as the screen or a printer). Will perform all the placement calculations for each of the sub-plots and then tell these to draw themselves.
Parameters:
  g2 - the graphics device.
Parameters:
  area - the area within which the plot (including axis labels) should be drawn.
Parameters:
  anchor - the anchor point (null permitted).
Parameters:
  parentState - the state from the parent plot, if there is one.
Parameters:
  info - collects information about the drawing (null permitted).



equals
public boolean equals(Object obj)(Code)
Tests the plot for equality with an arbitrary object.
Parameters:
  obj - the object (null permitted). A boolean.



findSubplot
public CategoryPlot findSubplot(PlotRenderingInfo info, Point2D source)(Code)
Returns the subplot (if any) that contains the (x, y) point (specified in Java2D space).
Parameters:
  info - the chart rendering info (null not permitted).
Parameters:
  source - the source point (null not permitted). A subplot (possibly null).



getCategories
public List getCategories()(Code)
Returns an unmodifiable list of the categories contained in all the subplots. The list.



getCategoriesForAxis
public List getCategoriesForAxis(CategoryAxis axis)(Code)
Overridden to return the categories in the subplots.
Parameters:
  axis - ignored. A list of the categories in the subplots.
since:
   1.0.3



getGap
public double getGap()(Code)
Returns the space between subplots. The gap (in Java2D units).



getLegendItems
public LegendItemCollection getLegendItems()(Code)
Returns a collection of legend items for the plot. The legend items.



getSubplots
public List getSubplots()(Code)
Returns the list of subplots. An unmodifiable list of subplots .



handleClick
public void handleClick(int x, int y, PlotRenderingInfo info)(Code)
Handles a 'click' on the plot.
Parameters:
  x - x-coordinate of the click.
Parameters:
  y - y-coordinate of the click.
Parameters:
  info - information about the plot's dimensions.



plotChanged
public void plotChanged(PlotChangeEvent event)(Code)
Receives a PlotChangeEvent and responds by notifying all listeners.
Parameters:
  event - the event.



remove
public void remove(CategoryPlot subplot)(Code)
Removes a subplot from the combined chart. Potentially, this removes some unique categories from the overall union of the datasets...so the domain axis is reconfigured, then a PlotChangeEvent is sent to all registered listeners.
Parameters:
  subplot - the subplot (null not permitted).



setFixedRangeAxisSpaceForSubplots
protected void setFixedRangeAxisSpaceForSubplots(AxisSpace space)(Code)
Sets the size (width or height, depending on the orientation of the plot) for the range axis of each subplot.
Parameters:
  space - the space (null permitted).



setGap
public void setGap(double gap)(Code)
Sets the amount of space between subplots and sends a PlotChangeEvent to all registered listeners.
Parameters:
  gap - the gap between subplots (in Java2D units).



setOrientation
public void setOrientation(PlotOrientation orientation)(Code)
Sets the orientation of the plot (and all subplots).
Parameters:
  orientation - the orientation (null not permitted).



zoomRangeAxes
public void zoomRangeAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)
Multiplies the range on the range axis/axes by the specified factor.
Parameters:
  factor - the zoom factor.
Parameters:
  info - the plot rendering info (null not permitted).
Parameters:
  source - the source point (null not permitted).



zoomRangeAxes
public void zoomRangeAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code)
Zooms in on the range axes.
Parameters:
  lowerPercent - the lower bound.
Parameters:
  upperPercent - the upper bound.
Parameters:
  info - the plot rendering info (null not permitted).
Parameters:
  source - the source point (null not permitted).



Fields inherited from org.jfree.chart.plot.CategoryPlot
final public static Paint DEFAULT_CROSSHAIR_PAINT(Code)(Java Doc)
final public static Stroke DEFAULT_CROSSHAIR_STROKE(Code)(Java Doc)
final public static boolean DEFAULT_CROSSHAIR_VISIBLE(Code)(Java Doc)
final public static boolean DEFAULT_DOMAIN_GRIDLINES_VISIBLE(Code)(Java Doc)
final public static Paint DEFAULT_GRIDLINE_PAINT(Code)(Java Doc)
final public static Stroke DEFAULT_GRIDLINE_STROKE(Code)(Java Doc)
final public static boolean DEFAULT_RANGE_GRIDLINES_VISIBLE(Code)(Java Doc)
final public static Font DEFAULT_VALUE_LABEL_FONT(Code)(Java Doc)
protected static ResourceBundle localizationResources(Code)(Java Doc)

Methods inherited from org.jfree.chart.plot.CategoryPlot
public void addAnnotation(CategoryAnnotation annotation)(Code)(Java Doc)
public void addDomainMarker(CategoryMarker marker)(Code)(Java Doc)
public void addDomainMarker(CategoryMarker marker, Layer layer)(Code)(Java Doc)
public void addDomainMarker(int index, CategoryMarker marker, Layer layer)(Code)(Java Doc)
public void addRangeMarker(Marker marker)(Code)(Java Doc)
public void addRangeMarker(Marker marker, Layer layer)(Code)(Java Doc)
public void addRangeMarker(int index, Marker marker, Layer layer)(Code)(Java Doc)
protected AxisSpace calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea)(Code)(Java Doc)
protected AxisSpace calculateDomainAxisSpace(Graphics2D g2, Rectangle2D plotArea, AxisSpace space)(Code)(Java Doc)
protected AxisSpace calculateRangeAxisSpace(Graphics2D g2, Rectangle2D plotArea, AxisSpace space)(Code)(Java Doc)
public void clearAnnotations()(Code)(Java Doc)
public void clearDomainAxes()(Code)(Java Doc)
public void clearDomainMarkers()(Code)(Java Doc)
public void clearDomainMarkers(int index)(Code)(Java Doc)
public void clearRangeAxes()(Code)(Java Doc)
public void clearRangeMarkers()(Code)(Java Doc)
public void clearRangeMarkers(int index)(Code)(Java Doc)
public Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public void configureDomainAxes()(Code)(Java Doc)
public void configureRangeAxes()(Code)(Java Doc)
public void datasetChanged(DatasetChangeEvent event)(Code)(Java Doc)
public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo state)(Code)(Java Doc)
protected void drawAnnotations(Graphics2D g2, Rectangle2D dataArea)(Code)(Java Doc)
protected Map drawAxes(Graphics2D g2, Rectangle2D plotArea, Rectangle2D dataArea, PlotRenderingInfo plotState)(Code)(Java Doc)
public void drawBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
protected void drawDomainGridlines(Graphics2D g2, Rectangle2D dataArea)(Code)(Java Doc)
protected void drawDomainMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc)
protected void drawRangeCrosshair(Graphics2D g2, Rectangle2D dataArea, PlotOrientation orientation, double value, ValueAxis axis, Stroke stroke, Paint paint)(Code)(Java Doc)
protected void drawRangeGridlines(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc)
protected void drawRangeLine(Graphics2D g2, Rectangle2D dataArea, double value, Stroke stroke, Paint paint)(Code)(Java Doc)
protected void drawRangeMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public double getAnchorValue()(Code)(Java Doc)
public List getAnnotations()(Code)(Java Doc)
public RectangleInsets getAxisOffset()(Code)(Java Doc)
public List getCategories()(Code)(Java Doc)
public List getCategoriesForAxis(CategoryAxis axis)(Code)(Java Doc)
public SortOrder getColumnRenderingOrder()(Code)(Java Doc)
public Range getDataRange(ValueAxis axis)(Code)(Java Doc)
public CategoryDataset getDataset()(Code)(Java Doc)
public CategoryDataset getDataset(int index)(Code)(Java Doc)
public int getDatasetCount()(Code)(Java Doc)
public DatasetRenderingOrder getDatasetRenderingOrder()(Code)(Java Doc)
public CategoryAxis getDomainAxis()(Code)(Java Doc)
public CategoryAxis getDomainAxis(int index)(Code)(Java Doc)
public int getDomainAxisCount()(Code)(Java Doc)
public RectangleEdge getDomainAxisEdge()(Code)(Java Doc)
public RectangleEdge getDomainAxisEdge(int index)(Code)(Java Doc)
public CategoryAxis getDomainAxisForDataset(int index)(Code)(Java Doc)
public int getDomainAxisIndex(CategoryAxis axis)(Code)(Java Doc)
public AxisLocation getDomainAxisLocation()(Code)(Java Doc)
public AxisLocation getDomainAxisLocation(int index)(Code)(Java Doc)
public Paint getDomainGridlinePaint()(Code)(Java Doc)
public CategoryAnchor getDomainGridlinePosition()(Code)(Java Doc)
public Stroke getDomainGridlineStroke()(Code)(Java Doc)
public Collection getDomainMarkers(Layer layer)(Code)(Java Doc)
public Collection getDomainMarkers(int index, Layer layer)(Code)(Java Doc)
public boolean getDrawSharedDomainAxis()(Code)(Java Doc)
public AxisSpace getFixedDomainAxisSpace()(Code)(Java Doc)
public LegendItemCollection getFixedLegendItems()(Code)(Java Doc)
public AxisSpace getFixedRangeAxisSpace()(Code)(Java Doc)
public int getIndexOf(CategoryItemRenderer renderer)(Code)(Java Doc)
public LegendItemCollection getLegendItems()(Code)(Java Doc)
public PlotOrientation getOrientation()(Code)(Java Doc)
public String getPlotType()(Code)(Java Doc)
public ValueAxis getRangeAxis()(Code)(Java Doc)
public ValueAxis getRangeAxis(int index)(Code)(Java Doc)
public int getRangeAxisCount()(Code)(Java Doc)
public RectangleEdge getRangeAxisEdge()(Code)(Java Doc)
public RectangleEdge getRangeAxisEdge(int index)(Code)(Java Doc)
public ValueAxis getRangeAxisForDataset(int index)(Code)(Java Doc)
public AxisLocation getRangeAxisLocation()(Code)(Java Doc)
public AxisLocation getRangeAxisLocation(int index)(Code)(Java Doc)
public Paint getRangeCrosshairPaint()(Code)(Java Doc)
public Stroke getRangeCrosshairStroke()(Code)(Java Doc)
public double getRangeCrosshairValue()(Code)(Java Doc)
public Paint getRangeGridlinePaint()(Code)(Java Doc)
public Stroke getRangeGridlineStroke()(Code)(Java Doc)
public Collection getRangeMarkers(Layer layer)(Code)(Java Doc)
public Collection getRangeMarkers(int index, Layer layer)(Code)(Java Doc)
public CategoryItemRenderer getRenderer()(Code)(Java Doc)
public CategoryItemRenderer getRenderer(int index)(Code)(Java Doc)
public CategoryItemRenderer getRendererForDataset(CategoryDataset dataset)(Code)(Java Doc)
public SortOrder getRowRenderingOrder()(Code)(Java Doc)
public int getWeight()(Code)(Java Doc)
public void handleClick(int x, int y, PlotRenderingInfo info)(Code)(Java Doc)
public boolean isDomainGridlinesVisible()(Code)(Java Doc)
public boolean isDomainZoomable()(Code)(Java Doc)
public boolean isRangeCrosshairLockedOnData()(Code)(Java Doc)
public boolean isRangeCrosshairVisible()(Code)(Java Doc)
public boolean isRangeGridlinesVisible()(Code)(Java Doc)
public boolean isRangeZoomable()(Code)(Java Doc)
public void mapDatasetToDomainAxis(int index, int axisIndex)(Code)(Java Doc)
public void mapDatasetToRangeAxis(int index, int axisIndex)(Code)(Java Doc)
public boolean removeAnnotation(CategoryAnnotation annotation)(Code)(Java Doc)
public boolean render(Graphics2D g2, Rectangle2D dataArea, int index, PlotRenderingInfo info)(Code)(Java Doc)
public void rendererChanged(RendererChangeEvent event)(Code)(Java Doc)
public void setAnchorValue(double value)(Code)(Java Doc)
public void setAnchorValue(double value, boolean notify)(Code)(Java Doc)
public void setAxisOffset(RectangleInsets offset)(Code)(Java Doc)
public void setColumnRenderingOrder(SortOrder order)(Code)(Java Doc)
public void setDataset(CategoryDataset dataset)(Code)(Java Doc)
public void setDataset(int index, CategoryDataset dataset)(Code)(Java Doc)
public void setDatasetRenderingOrder(DatasetRenderingOrder order)(Code)(Java Doc)
public void setDomainAxes(CategoryAxis[] axes)(Code)(Java Doc)
public void setDomainAxis(CategoryAxis axis)(Code)(Java Doc)
public void setDomainAxis(int index, CategoryAxis axis)(Code)(Java Doc)
public void setDomainAxis(int index, CategoryAxis axis, boolean notify)(Code)(Java Doc)
public void setDomainAxisLocation(AxisLocation location)(Code)(Java Doc)
public void setDomainAxisLocation(AxisLocation location, boolean notify)(Code)(Java Doc)
public void setDomainAxisLocation(int index, AxisLocation location)(Code)(Java Doc)
public void setDomainAxisLocation(int index, AxisLocation location, boolean notify)(Code)(Java Doc)
public void setDomainGridlinePaint(Paint paint)(Code)(Java Doc)
public void setDomainGridlinePosition(CategoryAnchor position)(Code)(Java Doc)
public void setDomainGridlineStroke(Stroke stroke)(Code)(Java Doc)
public void setDomainGridlinesVisible(boolean visible)(Code)(Java Doc)
public void setDrawSharedDomainAxis(boolean draw)(Code)(Java Doc)
public void setFixedDomainAxisSpace(AxisSpace space)(Code)(Java Doc)
public void setFixedLegendItems(LegendItemCollection items)(Code)(Java Doc)
public void setFixedRangeAxisSpace(AxisSpace space)(Code)(Java Doc)
public void setOrientation(PlotOrientation orientation)(Code)(Java Doc)
public void setRangeAxes(ValueAxis[] axes)(Code)(Java Doc)
public void setRangeAxis(ValueAxis axis)(Code)(Java Doc)
public void setRangeAxis(int index, ValueAxis axis)(Code)(Java Doc)
public void setRangeAxis(int index, ValueAxis axis, boolean notify)(Code)(Java Doc)
public void setRangeAxisLocation(AxisLocation location)(Code)(Java Doc)
public void setRangeAxisLocation(AxisLocation location, boolean notify)(Code)(Java Doc)
public void setRangeAxisLocation(int index, AxisLocation location)(Code)(Java Doc)
public void setRangeAxisLocation(int index, AxisLocation location, boolean notify)(Code)(Java Doc)
public void setRangeCrosshairLockedOnData(boolean flag)(Code)(Java Doc)
public void setRangeCrosshairPaint(Paint paint)(Code)(Java Doc)
public void setRangeCrosshairStroke(Stroke stroke)(Code)(Java Doc)
public void setRangeCrosshairValue(double value)(Code)(Java Doc)
public void setRangeCrosshairValue(double value, boolean notify)(Code)(Java Doc)
public void setRangeCrosshairVisible(boolean flag)(Code)(Java Doc)
public void setRangeGridlinePaint(Paint paint)(Code)(Java Doc)
public void setRangeGridlineStroke(Stroke stroke)(Code)(Java Doc)
public void setRangeGridlinesVisible(boolean visible)(Code)(Java Doc)
public void setRenderer(CategoryItemRenderer renderer)(Code)(Java Doc)
public void setRenderer(CategoryItemRenderer renderer, boolean notify)(Code)(Java Doc)
public void setRenderer(int index, CategoryItemRenderer renderer)(Code)(Java Doc)
public void setRenderer(int index, CategoryItemRenderer renderer, boolean notify)(Code)(Java Doc)
public void setRenderers(CategoryItemRenderer[] renderers)(Code)(Java Doc)
public void setRowRenderingOrder(SortOrder order)(Code)(Java Doc)
public void setWeight(int weight)(Code)(Java Doc)
public void zoom(double percent)(Code)(Java Doc)
public void zoomDomainAxes(double factor, PlotRenderingInfo state, Point2D source)(Code)(Java Doc)
public void zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo state, Point2D source)(Code)(Java Doc)
public void zoomRangeAxes(double factor, PlotRenderingInfo state, Point2D source)(Code)(Java Doc)
public void zoomRangeAxes(double lowerPercent, double upperPercent, PlotRenderingInfo state, Point2D source)(Code)(Java Doc)

Fields inherited from org.jfree.chart.plot.Plot
final public static float DEFAULT_BACKGROUND_ALPHA(Code)(Java Doc)
final public static Paint DEFAULT_BACKGROUND_PAINT(Code)(Java Doc)
final public static float DEFAULT_FOREGROUND_ALPHA(Code)(Java Doc)
final public static RectangleInsets DEFAULT_INSETS(Code)(Java Doc)
final public static Shape DEFAULT_LEGEND_ITEM_BOX(Code)(Java Doc)
final public static Shape DEFAULT_LEGEND_ITEM_CIRCLE(Code)(Java Doc)
final public static Paint DEFAULT_OUTLINE_PAINT(Code)(Java Doc)
final public static Stroke DEFAULT_OUTLINE_STROKE(Code)(Java Doc)
final public static int MINIMUM_HEIGHT_TO_DRAW(Code)(Java Doc)
final public static int MINIMUM_WIDTH_TO_DRAW(Code)(Java Doc)
final public static Number ZERO(Code)(Java Doc)

Methods inherited from org.jfree.chart.plot.Plot
public void addChangeListener(PlotChangeListener listener)(Code)(Java Doc)
public void axisChanged(AxisChangeEvent event)(Code)(Java Doc)
public Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public void datasetChanged(DatasetChangeEvent event)(Code)(Java Doc)
abstract public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)(Code)(Java Doc)
public void drawBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
public void drawBackgroundImage(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
protected void drawNoDataMessage(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
public void drawOutline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void fillBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
protected void fillBackground(Graphics2D g2, Rectangle2D area, PlotOrientation orientation)(Code)(Java Doc)
public float getBackgroundAlpha()(Code)(Java Doc)
public Image getBackgroundImage()(Code)(Java Doc)
public int getBackgroundImageAlignment()(Code)(Java Doc)
public float getBackgroundImageAlpha()(Code)(Java Doc)
public Paint getBackgroundPaint()(Code)(Java Doc)
public DatasetGroup getDatasetGroup()(Code)(Java Doc)
public DrawingSupplier getDrawingSupplier()(Code)(Java Doc)
public float getForegroundAlpha()(Code)(Java Doc)
public RectangleInsets getInsets()(Code)(Java Doc)
public LegendItemCollection getLegendItems()(Code)(Java Doc)
public String getNoDataMessage()(Code)(Java Doc)
public Font getNoDataMessageFont()(Code)(Java Doc)
public Paint getNoDataMessagePaint()(Code)(Java Doc)
public Paint getOutlinePaint()(Code)(Java Doc)
public Stroke getOutlineStroke()(Code)(Java Doc)
public Plot getParent()(Code)(Java Doc)
abstract public String getPlotType()(Code)(Java Doc)
protected double getRectX(double x, double w1, double w2, RectangleEdge edge)(Code)(Java Doc)
protected double getRectY(double y, double h1, double h2, RectangleEdge edge)(Code)(Java Doc)
public Plot getRootPlot()(Code)(Java Doc)
public void handleClick(int x, int y, PlotRenderingInfo info)(Code)(Java Doc)
public boolean isOutlineVisible()(Code)(Java Doc)
public boolean isSubplot()(Code)(Java Doc)
public void markerChanged(MarkerChangeEvent event)(Code)(Java Doc)
public void notifyListeners(PlotChangeEvent event)(Code)(Java Doc)
public void removeChangeListener(PlotChangeListener listener)(Code)(Java Doc)
public static RectangleEdge resolveDomainAxisLocation(AxisLocation location, PlotOrientation orientation)(Code)(Java Doc)
public static RectangleEdge resolveRangeAxisLocation(AxisLocation location, PlotOrientation orientation)(Code)(Java Doc)
public void setBackgroundAlpha(float alpha)(Code)(Java Doc)
public void setBackgroundImage(Image image)(Code)(Java Doc)
public void setBackgroundImageAlignment(int alignment)(Code)(Java Doc)
public void setBackgroundImageAlpha(float alpha)(Code)(Java Doc)
public void setBackgroundPaint(Paint paint)(Code)(Java Doc)
protected void setDatasetGroup(DatasetGroup group)(Code)(Java Doc)
public void setDrawingSupplier(DrawingSupplier supplier)(Code)(Java Doc)
public void setForegroundAlpha(float alpha)(Code)(Java Doc)
public void setInsets(RectangleInsets insets)(Code)(Java Doc)
public void setInsets(RectangleInsets insets, boolean notify)(Code)(Java Doc)
public void setNoDataMessage(String message)(Code)(Java Doc)
public void setNoDataMessageFont(Font font)(Code)(Java Doc)
public void setNoDataMessagePaint(Paint paint)(Code)(Java Doc)
public void setOutlinePaint(Paint paint)(Code)(Java Doc)
public void setOutlineStroke(Stroke stroke)(Code)(Java Doc)
public void setOutlineVisible(boolean visible)(Code)(Java Doc)
public void setParent(Plot parent)(Code)(Java Doc)
public void zoom(double percent)(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.