org.jfree.chart.plot
Class PlotRenderingInfo

java.lang.Object
  extended byorg.jfree.chart.plot.PlotRenderingInfo

public class PlotRenderingInfo
extends java.lang.Object

Stores information about the dimensions of a plot and its subplots.

Author:
David Gilbert

Constructor Summary
PlotRenderingInfo(ChartRenderingInfo owner)
          Default constructor.
 
Method Summary
 void addSubplotInfo(PlotRenderingInfo info)
          Adds the info for a subplot.
 java.awt.geom.Rectangle2D getDataArea()
          Returns the plot's data area (in Java2D space).
 ChartRenderingInfo getOwner()
          Returns the owner.
 java.awt.geom.Rectangle2D getPlotArea()
          Returns the plot area (in Java2D space).
 PlotRenderingInfo getSubplotInfo(int index)
          Returns the info for a subplot.
 void setDataArea(java.awt.geom.Rectangle2D area)
          Sets the data area.
 void setPlotArea(java.awt.geom.Rectangle2D area)
          Sets the plot area.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PlotRenderingInfo

public PlotRenderingInfo(ChartRenderingInfo owner)
Default constructor.

Parameters:
owner - the owner.
Method Detail

getOwner

public ChartRenderingInfo getOwner()
Returns the owner.

Returns:
The owner.

getPlotArea

public java.awt.geom.Rectangle2D getPlotArea()
Returns the plot area (in Java2D space).

Returns:
The plot area.

setPlotArea

public void setPlotArea(java.awt.geom.Rectangle2D area)
Sets the plot area.

Parameters:
area - the plot area (in Java2D space)

getDataArea

public java.awt.geom.Rectangle2D getDataArea()
Returns the plot's data area (in Java2D space).

Returns:
The data area.

setDataArea

public void setDataArea(java.awt.geom.Rectangle2D area)
Sets the data area.

Parameters:
area - the data area (in Java2D space).

addSubplotInfo

public void addSubplotInfo(PlotRenderingInfo info)
Adds the info for a subplot.

Parameters:
info - the subplot info.

getSubplotInfo

public PlotRenderingInfo getSubplotInfo(int index)
Returns the info for a subplot.

Parameters:
index - the subplot index.
Returns:
The info.