| java.lang.Object org.jfree.chart.axis.AxisCollection
AxisCollection | public class AxisCollection (Code) | | A collection of axes that have been assigned to the TOP, BOTTOM, LEFT or
RIGHT of a chart. This class is used internally by JFreeChart, you won't
normally need to use it yourself.
|
Constructor Summary | |
public | AxisCollection() Creates a new empty collection. |
Method Summary | |
public void | add(Axis axis, RectangleEdge edge) Adds an axis to the collection. | public List | getAxesAtBottom() Returns a list of the axes (if any) that need to be drawn at the bottom
of the plot area. | public List | getAxesAtLeft() Returns a list of the axes (if any) that need to be drawn at the left
of the plot area. | public List | getAxesAtRight() Returns a list of the axes (if any) that need to be drawn at the right
of the plot area. | public List | getAxesAtTop() Returns a list of the axes (if any) that need to be drawn at the top of
the plot area. |
AxisCollection | public AxisCollection()(Code) | | Creates a new empty collection.
|
add | public void add(Axis axis, RectangleEdge edge)(Code) | | Adds an axis to the collection.
Parameters: axis - the axis (null not permitted). Parameters: edge - the edge of the plot that the axis should be drawn on (null not permitted). |
getAxesAtBottom | public List getAxesAtBottom()(Code) | | Returns a list of the axes (if any) that need to be drawn at the bottom
of the plot area.
A list of axes. |
getAxesAtLeft | public List getAxesAtLeft()(Code) | | Returns a list of the axes (if any) that need to be drawn at the left
of the plot area.
A list of axes. |
getAxesAtRight | public List getAxesAtRight()(Code) | | Returns a list of the axes (if any) that need to be drawn at the right
of the plot area.
A list of axes. |
getAxesAtTop | public List getAxesAtTop()(Code) | | Returns a list of the axes (if any) that need to be drawn at the top of
the plot area.
A list of axes. |
|
|