Java Doc for CombinedRangeXYPlot.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.XYPlot
         org.jfree.chart.plot.CombinedRangeXYPlot

CombinedRangeXYPlot
public class CombinedRangeXYPlot extends XYPlot implements Zoomable,Cloneable,PublicCloneable,Serializable,PlotChangeListener(Code)
An extension of XYPlot that contains multiple subplots that share a common range axis.



Constructor Summary
public  CombinedRangeXYPlot()
     Default constructor.
public  CombinedRangeXYPlot(ValueAxis rangeAxis)
     Creates a new plot.

Method Summary
public  voidadd(XYPlot subplot)
     Adds a subplot, with a default 'weight' of 1.

You must ensure that the subplot has a non-null domain axis.
public  voidadd(XYPlot subplot, int weight)
     Adds a subplot with a particular weight (greater than or equal to one).
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 within the specified area on a graphics device.
public  booleanequals(Object obj)
     Tests this plot for equality with another object.
Parameters:
  obj - the other object.
public  XYPlotfindSubplot(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  RangegetDataRange(ValueAxis axis)
     Returns the range for the axis.
public  doublegetGap()
     Returns the space between subplots.
public  LegendItemCollectiongetLegendItems()
     Returns a collection of legend items for the plot.
public  StringgetPlotType()
     Returns a string describing the type of plot.
public  ListgetSubplots()
     Returns a list of the subplots.
public  voidhandleClick(int x, int y, PlotRenderingInfo info)
     Handles a 'click' on the plot by updating the anchor values...
public  voidplotChanged(PlotChangeEvent event)
     Receives a PlotChangeEvent and responds by notifying all listeners.
public  voidremove(XYPlot subplot)
     Removes a subplot from the combined chart.
protected  voidsetFixedDomainAxisSpaceForSubplots(AxisSpace space)
     Sets the space (width or height, depending on the orientation of the plot) for the domain axis of each subplot.
public  voidsetGap(double gap)
     Sets the amount of space between subplots.
public  voidsetOrientation(PlotOrientation orientation)
     Sets the orientation for the plot (and all its subplots).
public  voidsetRenderer(XYItemRenderer renderer)
     Sets the item renderer FOR ALL SUBPLOTS.
public  voidzoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source)
     Multiplies the range on the domain axis/axes by the specified factor.
public  voidzoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)
     Zooms in on the domain axes.


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



CombinedRangeXYPlot
public CombinedRangeXYPlot(ValueAxis rangeAxis)(Code)
Creates a new plot.
Parameters:
  rangeAxis - the shared axis.




Method Detail
add
public void add(XYPlot subplot)(Code)
Adds a subplot, with a default 'weight' of 1.

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



add
public void add(XYPlot subplot, int weight)(Code)
Adds a subplot with a particular weight (greater than or equal to one). The weight determines how much space is allocated to the subplot relative to all the other subplots.

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



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 within the specified area on a graphics device.
Parameters:
  g2 - the graphics device.
Parameters:
  area - the plot area (in Java2D space).
Parameters:
  anchor - an anchor point in Java2D space (null permitted).
Parameters:
  parentState - the state from the parent plot, if there is one (null permitted).
Parameters:
  info - collects chart drawing information (null permitted).



equals
public boolean equals(Object obj)(Code)
Tests this plot for equality with another object.
Parameters:
  obj - the other object. true or false.



findSubplot
public XYPlot 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).



getDataRange
public Range getDataRange(ValueAxis axis)(Code)
Returns the range for the axis. This is the combined range of all the subplots.
Parameters:
  axis - the axis. The range.



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



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



getPlotType
public String getPlotType()(Code)
Returns a string describing the type of plot. The type of plot.



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



handleClick
public void handleClick(int x, int y, PlotRenderingInfo info)(Code)
Handles a 'click' on the plot by updating the anchor values...
Parameters:
  x - x-coordinate, where the click occured.
Parameters:
  y - y-coordinate, where the click occured.
Parameters:
  info - object containing information about the plot 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(XYPlot subplot)(Code)
Removes a subplot from the combined chart.
Parameters:
  subplot - the subplot (null not permitted).



setFixedDomainAxisSpaceForSubplots
protected void setFixedDomainAxisSpaceForSubplots(AxisSpace space)(Code)
Sets the space (width or height, depending on the orientation of the plot) for the domain axis of each subplot.
Parameters:
  space - the space.



setGap
public void setGap(double gap)(Code)
Sets the amount of space between subplots.
Parameters:
  gap - the gap between subplots



setOrientation
public void setOrientation(PlotOrientation orientation)(Code)
Sets the orientation for the plot (and all its subplots).
Parameters:
  orientation - the orientation.



setRenderer
public void setRenderer(XYItemRenderer renderer)(Code)
Sets the item renderer FOR ALL SUBPLOTS. Registered listeners are notified that the plot has been modified.

Note: usually you will want to set the renderer independently for each subplot, which is NOT what this method does.
Parameters:
  renderer - the new renderer.




zoomDomainAxes
public void zoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)
Multiplies the range on the domain 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).



zoomDomainAxes
public void zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code)
Zooms in on the domain 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.XYPlot
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 Paint DEFAULT_GRIDLINE_PAINT(Code)(Java Doc)
final public static Stroke DEFAULT_GRIDLINE_STROKE(Code)(Java Doc)
protected static ResourceBundle localizationResources(Code)(Java Doc)

Methods inherited from org.jfree.chart.plot.XYPlot
public void addAnnotation(XYAnnotation annotation)(Code)(Java Doc)
public void addDomainMarker(Marker marker)(Code)(Java Doc)
public void addDomainMarker(Marker marker, Layer layer)(Code)(Java Doc)
public void addDomainMarker(int index, Marker 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 info)(Code)(Java Doc)
public void drawAnnotations(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info)(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 drawDomainCrosshair(Graphics2D g2, Rectangle2D dataArea, PlotOrientation orientation, double value, ValueAxis axis, Stroke stroke, Paint paint)(Code)(Java Doc)
protected void drawDomainGridlines(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc)
protected void drawDomainMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc)
public void drawDomainTickBands(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc)
protected void drawHorizontalLine(Graphics2D g2, Rectangle2D dataArea, double value, Stroke stroke, Paint paint)(Code)(Java Doc)
protected void drawQuadrants(Graphics2D g2, Rectangle2D area)(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 area, List ticks)(Code)(Java Doc)
protected void drawRangeMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc)
public void drawRangeTickBands(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc)
protected void drawVerticalLine(Graphics2D g2, Rectangle2D dataArea, double value, Stroke stroke, Paint paint)(Code)(Java Doc)
protected void drawZeroDomainBaseline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
protected void drawZeroRangeBaseline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public List getAnnotations()(Code)(Java Doc)
public RectangleInsets getAxisOffset()(Code)(Java Doc)
public Range getDataRange(ValueAxis axis)(Code)(Java Doc)
public XYDataset getDataset()(Code)(Java Doc)
public XYDataset getDataset(int index)(Code)(Java Doc)
public int getDatasetCount()(Code)(Java Doc)
public DatasetRenderingOrder getDatasetRenderingOrder()(Code)(Java Doc)
public ValueAxis getDomainAxis()(Code)(Java Doc)
public ValueAxis 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 ValueAxis getDomainAxisForDataset(int index)(Code)(Java Doc)
public int getDomainAxisIndex(ValueAxis axis)(Code)(Java Doc)
public AxisLocation getDomainAxisLocation()(Code)(Java Doc)
public AxisLocation getDomainAxisLocation(int index)(Code)(Java Doc)
public Paint getDomainCrosshairPaint()(Code)(Java Doc)
public Stroke getDomainCrosshairStroke()(Code)(Java Doc)
public double getDomainCrosshairValue()(Code)(Java Doc)
public Paint getDomainGridlinePaint()(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 Paint getDomainTickBandPaint()(Code)(Java Doc)
public Paint getDomainZeroBaselinePaint()(Code)(Java Doc)
public Stroke getDomainZeroBaselineStroke()(Code)(Java Doc)
public AxisSpace getFixedDomainAxisSpace()(Code)(Java Doc)
public LegendItemCollection getFixedLegendItems()(Code)(Java Doc)
public AxisSpace getFixedRangeAxisSpace()(Code)(Java Doc)
public int getIndexOf(XYItemRenderer renderer)(Code)(Java Doc)
public LegendItemCollection getLegendItems()(Code)(Java Doc)
public PlotOrientation getOrientation()(Code)(Java Doc)
public String getPlotType()(Code)(Java Doc)
public Point2D getQuadrantOrigin()(Code)(Java Doc)
public Paint getQuadrantPaint(int index)(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 int getRangeAxisIndex(ValueAxis axis)(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 Paint getRangeTickBandPaint()(Code)(Java Doc)
public Paint getRangeZeroBaselinePaint()(Code)(Java Doc)
public Stroke getRangeZeroBaselineStroke()(Code)(Java Doc)
public XYItemRenderer getRenderer()(Code)(Java Doc)
public XYItemRenderer getRenderer(int index)(Code)(Java Doc)
public XYItemRenderer getRendererForDataset(XYDataset dataset)(Code)(Java Doc)
public int getSeriesCount()(Code)(Java Doc)
public SeriesRenderingOrder getSeriesRenderingOrder()(Code)(Java Doc)
public int getWeight()(Code)(Java Doc)
public void handleClick(int x, int y, PlotRenderingInfo info)(Code)(Java Doc)
public int indexOf(XYDataset dataset)(Code)(Java Doc)
public boolean isDomainCrosshairLockedOnData()(Code)(Java Doc)
public boolean isDomainCrosshairVisible()(Code)(Java Doc)
public boolean isDomainGridlinesVisible()(Code)(Java Doc)
public boolean isDomainZeroBaselineVisible()(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 isRangeZeroBaselineVisible()(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(XYAnnotation annotation)(Code)(Java Doc)
public boolean render(Graphics2D g2, Rectangle2D dataArea, int index, PlotRenderingInfo info, CrosshairState crosshairState)(Code)(Java Doc)
public void rendererChanged(RendererChangeEvent event)(Code)(Java Doc)
public void setAxisOffset(RectangleInsets offset)(Code)(Java Doc)
public void setDataset(XYDataset dataset)(Code)(Java Doc)
public void setDataset(int index, XYDataset dataset)(Code)(Java Doc)
public void setDatasetRenderingOrder(DatasetRenderingOrder order)(Code)(Java Doc)
public void setDomainAxes(ValueAxis[] axes)(Code)(Java Doc)
public void setDomainAxis(ValueAxis axis)(Code)(Java Doc)
public void setDomainAxis(int index, ValueAxis axis)(Code)(Java Doc)
public void setDomainAxis(int index, ValueAxis 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 setDomainCrosshairLockedOnData(boolean flag)(Code)(Java Doc)
public void setDomainCrosshairPaint(Paint paint)(Code)(Java Doc)
public void setDomainCrosshairStroke(Stroke stroke)(Code)(Java Doc)
public void setDomainCrosshairValue(double value)(Code)(Java Doc)
public void setDomainCrosshairValue(double value, boolean notify)(Code)(Java Doc)
public void setDomainCrosshairVisible(boolean flag)(Code)(Java Doc)
public void setDomainGridlinePaint(Paint paint)(Code)(Java Doc)
public void setDomainGridlineStroke(Stroke stroke)(Code)(Java Doc)
public void setDomainGridlinesVisible(boolean visible)(Code)(Java Doc)
public void setDomainTickBandPaint(Paint paint)(Code)(Java Doc)
public void setDomainZeroBaselinePaint(Paint paint)(Code)(Java Doc)
public void setDomainZeroBaselineStroke(Stroke stroke)(Code)(Java Doc)
public void setDomainZeroBaselineVisible(boolean visible)(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 setQuadrantOrigin(Point2D origin)(Code)(Java Doc)
public void setQuadrantPaint(int index, Paint paint)(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 setRangeTickBandPaint(Paint paint)(Code)(Java Doc)
public void setRangeZeroBaselinePaint(Paint paint)(Code)(Java Doc)
public void setRangeZeroBaselineStroke(Stroke stroke)(Code)(Java Doc)
public void setRangeZeroBaselineVisible(boolean visible)(Code)(Java Doc)
public void setRenderer(XYItemRenderer renderer)(Code)(Java Doc)
public void setRenderer(int index, XYItemRenderer renderer)(Code)(Java Doc)
public void setRenderer(int index, XYItemRenderer renderer, boolean notify)(Code)(Java Doc)
public void setRenderers(XYItemRenderer[] renderers)(Code)(Java Doc)
public void setSeriesRenderingOrder(SeriesRenderingOrder order)(Code)(Java Doc)
public void setWeight(int weight)(Code)(Java Doc)
public void zoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)(Java Doc)
public void zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code)(Java Doc)
public void zoomRangeAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)(Java Doc)
public void zoomRangeAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, 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.