java.lang.Object | |
↳ | org.jfree.chart.plot.PlotRenderingInfo |
Stores information about the dimensions of a plot and its subplots.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new instance.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds the info for a subplot.
| |||||||||||
Returns a clone of this object.
| |||||||||||
Tests this instance for equality against an arbitrary object.
| |||||||||||
Returns the plot's data area (in Java2D space).
| |||||||||||
Returns the owner (as specified in the constructor).
| |||||||||||
Returns the plot area (in Java2D space).
| |||||||||||
Returns the number of subplots (possibly zero).
| |||||||||||
Returns the index of the subplot that contains the specified
(x, y) point (the "source" point).
| |||||||||||
Returns the info for a subplot.
| |||||||||||
Sets the data area.
| |||||||||||
Sets the plot area.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Creates a new instance.
owner | the owner (null permitted).
|
---|
Returns a clone of this object.
CloneNotSupportedException | if there is a problem cloning. |
---|
Tests this instance for equality against an arbitrary object.
obj | the object (null permitted). |
---|
Returns the plot's data area (in Java2D space).
null
).Returns the owner (as specified in the constructor).
null
).
Returns the plot area (in Java2D space).
null
).Returns the number of subplots (possibly zero).
Returns the index of the subplot that contains the specified
(x, y) point (the "source" point). The source point will usually
come from a mouse click on a ChartPanel
,
and this method is then used to determine the subplot that
contains the source point.
source | the source point (in Java2D space, null not
permitted). |
---|
source
).
Returns the info for a subplot.
index | the subplot index. |
---|
Sets the data area.
area | the data area (in Java2D space, null permitted
but discouraged). |
---|
Sets the plot area.
area | the plot area (in Java2D space, null
permitted but discouraged) |
---|