Uses of Class
com.jrefinery.chart.Axis

Packages that use Axis
com.jrefinery.chart The main classes in the JFreeChart class library. 
com.jrefinery.chart.event The event classes in the JFreeChart class library. 
com.jrefinery.chart.ui An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application); 
 

Uses of Axis in com.jrefinery.chart
 

Subclasses of Axis in com.jrefinery.chart
 class CategoryAxis
          An axis that displays categories.
 class DateAxis
          The base class for axes that display java.util.Date values.
 class HorizontalCategoryAxis
          A horizontal axis that displays categories.
 class HorizontalDateAxis
          A horizontal axis that displays date values.
 class HorizontalLogarithmicAxis
          A logarithmic value axis, for values displayed horizontally.
 class HorizontalNumberAxis
          A horizontal axis that displays numerical values.
 class HorizontalNumberAxis3D
          A horizontal axis that displays numerical values, and has a 3D-effect.
 class HorizontalSymbolicAxis
          A standard linear value axis, for SYMBOLIC values displayed horizontally.
 class NumberAxis
          The base class for axes that display numerical data.
 class ValueAxis
          The base class for axes that display value data (a "value" can be a Number or a Date).
 class VerticalCategoryAxis
          A vertical axis that displays categories, used for horizontal bar charts.
 class VerticalLogarithmicAxis
          A logarithmic value axis, for values displayed vertically.
 class VerticalNumberAxis
          A standard linear value axis, for values displayed vertically.
 class VerticalNumberAxis3D
          A standard linear value axis, for values displayed vertically.
 class VerticalSymbolicAxis
          A standard linear value axis, for SYMBOLIC values displayed vertically.
 

Methods in com.jrefinery.chart with parameters of type Axis
 boolean ThermometerPlot.isCompatibleHorizontalAxis(Axis axis)
          Returns true if the axis is compatible with the meter plot.
 boolean ThermometerPlot.isCompatibleVerticalAxis(Axis axis)
          Returns true if the axis is compatible with the meter plot.
 boolean CombinedXYPlot.isValidSubHorizontalAxis(Axis axis)
          Checks that the horizontal axis for the subplot is valid.
 boolean CombinedXYPlot.isValidSubVerticalAxis(Axis axis)
          Checks that the vertical axis for the subplot is valid.
 boolean VerticalCategoryPlot.isCompatibleHorizontalAxis(Axis axis)
          Checks the compatibility of a horizontal axis, returning true if the axis is compatible with the plot, and false otherwise.
 boolean VerticalCategoryPlot.isCompatibleVerticalAxis(Axis axis)
          Checks the compatibility of a vertical axis, returning true if the axis is compatible with the plot, and false otherwise.
 boolean CompassPlot.isCompatibleHorizontalAxis(Axis axis)
          Returns true if the axis is compatible with the compass plot, and false otherwise.
 boolean CompassPlot.isCompatibleVerticalAxis(Axis axis)
          Returns true if the axis is compatible with the compass plot, and false otherwise.
 boolean PeriodMarkerPlot.isCompatibleHorizontalAxis(Axis axis)
          Checks the compatibility of a horizontal axis, returning true if the axis is compatible with the plot, and false otherwise.
 boolean PeriodMarkerPlot.isCompatibleVerticalAxis(Axis axis)
          Checks the compatibility of a vertical axis, returning true if the axis is compatible with the plot, and false otherwise.
 boolean HorizontalCategoryPlot.isCompatibleHorizontalAxis(Axis axis)
          Checks the compatibility of a horizontal axis, returning true if the axis is compatible with the plot, and false otherwise.
 boolean HorizontalCategoryPlot.isCompatibleVerticalAxis(Axis axis)
          Checks the compatibility of a vertical axis, returning true if the axis is compatible with the plot, and false otherwise.
 

Uses of Axis in com.jrefinery.chart.event
 

Methods in com.jrefinery.chart.event that return Axis
 Axis AxisChangeEvent.getAxis()
          Returns the axis that generated the event.
 

Constructors in com.jrefinery.chart.event with parameters of type Axis
AxisChangeEvent(Axis axis)
          Creates a new AxisChangeEvent.
 

Uses of Axis in com.jrefinery.chart.ui
 

Methods in com.jrefinery.chart.ui with parameters of type Axis
static AxisPropertyEditPanel AxisPropertyEditPanel.getInstance(Axis axis)
          A static method that returns a panel that is appropriate for the axis type.
 void AxisPropertyEditPanel.setAxisProperties(Axis axis)
          Sets the properties of the specified axis to match the properties defined on this panel.
 

Constructors in com.jrefinery.chart.ui with parameters of type Axis
AxisPropertyEditPanel(Axis axis)
          Standard constructor: builds a panel for displaying/editing the properties of the specified axis.