Uses of Class
org.jfree.chart.axis.Axis
Package | Description |
---|---|
org.jfree.chart.axis |
Axis classes and interfaces.
|
org.jfree.chart.event |
Event classes and listener interfaces, used to provide a change
notification mechanism so that charts are automatically redrawn
whenever changes are made to any chart component.
|
org.jfree.chart.ui |
An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application);
|
-
Uses of Axis in org.jfree.chart.axis
Subclasses of Axis in org.jfree.chart.axis Modifier and Type Class Description class
CategoryAxis
An axis that displays categories.class
CategoryAxis3D
An axis that displays categories and has a 3D effect.class
CyclicNumberAxis
This class extends NumberAxis and handles cycling.class
DateAxis
The base class for axes that display dates.class
ExtendedCategoryAxis
An extended version of theCategoryAxis
class that supports sublabels on the axis.class
LogarithmicAxis
A numerical axis that uses a logarithmic scale.class
NumberAxis
An axis for displaying numerical data.class
NumberAxis3D
A standard linear value axis, for values displayed vertically.class
SubCategoryAxis
A specialised category axis that can display sub-categories.class
SymbolicAxis
A standard linear value axis, for SYMBOLIC values.class
ValueAxis
The base class for axes that display value data, where values are measured using thedouble
primitive.Methods in org.jfree.chart.axis that return types with arguments of type Axis Modifier and Type Method Description List<Axis>
AxisCollection. getAxesAtBottom()
Returns a list of the axes (if any) that need to be drawn at the bottom of the plot area.List<Axis>
AxisCollection. getAxesAtLeft()
Returns a list of the axes (if any) that need to be drawn at the left of the plot area.List<Axis>
AxisCollection. getAxesAtRight()
Returns a list of the axes (if any) that need to be drawn at the right of the plot area.List<Axis>
AxisCollection. getAxesAtTop()
Returns a list of the axes (if any) that need to be drawn at the top of the plot area.Methods in org.jfree.chart.axis with parameters of type Axis Modifier and Type Method Description void
AxisCollection. add(Axis axis, org.jfree.ui.RectangleEdge edge)
Adds an axis to the collection. -
Uses of Axis in org.jfree.chart.event
Methods in org.jfree.chart.event that return Axis Modifier and Type Method Description Axis
AxisChangeEvent. getAxis()
Returns the axis that generated the event.Constructors in org.jfree.chart.event with parameters of type Axis Constructor Description AxisChangeEvent(Axis axis)
Creates a new AxisChangeEvent. -
Uses of Axis in org.jfree.chart.ui
Methods in org.jfree.chart.ui with parameters of type Axis Modifier and Type Method Description 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 org.jfree.chart.ui with parameters of type Axis Constructor Description AxisPropertyEditPanel(Axis axis)
Standard constructor: builds a panel for displaying/editing the properties of the specified axis.