| net.sf.jasperreports.charts.JRChartAxis
All known Subclasses: net.sf.jasperreports.charts.fill.JRFillChartAxis, net.sf.jasperreports.charts.base.JRBaseChartAxis,
JRChartAxis | public interface JRChartAxis (Code) | | Describes an axis that can be added to a multiple axis chart. The name
"axis" is a bit of a misnomer, as it really contains information about
a new dataset to plot, the axis to plot it against, and how to render that
dataset.
author: Barry Klawans (barry@users.sourceforge.net) version: $Id: JRChartAxis.java 1792 2007-07-30 08:57:32Z teodord $ |
Field Summary | |
final public static byte | POSITION_LEFT_OR_TOP Position the axis to the left of a VERTICAL chart or on the top
of a HORIZONTAL chart. | final public static byte | POSITION_RIGHT_OR_BOTTOM Position the axis to the right of a VERTICAL chart or on the bottom
of a HORIZONTAL chart. |
Method Summary | |
public JRChart | getChart() Returns the chart that contains the dataset and plot to use for this
axis. | public byte | getPosition() Returns the position of this axis. |
POSITION_LEFT_OR_TOP | final public static byte POSITION_LEFT_OR_TOP(Code) | | Position the axis to the left of a VERTICAL chart or on the top
of a HORIZONTAL chart.
|
POSITION_RIGHT_OR_BOTTOM | final public static byte POSITION_RIGHT_OR_BOTTOM(Code) | | Position the axis to the right of a VERTICAL chart or on the bottom
of a HORIZONTAL chart.
|
getChart | public JRChart getChart()(Code) | | Returns the chart that contains the dataset and plot to use for this
axis. The plot is used to figure out how to render the dataset when
adding to the multiple axis chart.
the chart that contains the dataset and plot for this axis |
getPosition | public byte getPosition()(Code) | | Returns the position of this axis.
the position of this axis |
|
|