Uses of Class
org.jfree.chart.axis.Axis
-
Packages that use Axis Package Description org.jfree.chart.axis Axis classes and interfaces.org.jfree.chart.editor Provides a simple (but so far incomplete) framework for editing chart properties.org.jfree.chart.entity Classes representing components of (or entities in) a chart.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.plot Plot classes and related interfaces. -
-
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
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
LogAxis
A numerical axis that uses a logarithmic scale.class
ModuloAxis
An axis that displays numerical values within a fixed range using a modulo calculation.class
NumberAxis
An axis for displaying numerical data.class
PeriodAxis
An axis that displays a date scale based on aRegularTimePeriod
.class
SubCategoryAxis
A specialised category axis that can display sub-categories.class
SymbolAxis
A standard linear value axis that replaces integer values with symbols.class
ValueAxis
The base class for axes that display value data, where values are measured using thedouble
primitive.Methods in org.jfree.chart.axis with parameters of type Axis Modifier and Type Method Description void
AxisCollection. add(Axis axis, RectangleEdge edge)
Adds an axis to the collection. -
Uses of Axis in org.jfree.chart.editor
Methods in org.jfree.chart.editor with parameters of type Axis Modifier and Type Method Description static DefaultAxisEditor
DefaultAxisEditor. getInstance(Axis axis)
A static method that returns a panel that is appropriate for the axis type.void
DefaultAxisEditor. setAxisProperties(Axis axis)
Sets the properties of the specified axis to match the properties defined on this panel.void
DefaultLogAxisEditor. setAxisProperties(Axis axis)
Sets the properties of the specified axis to match the properties defined on this panel.void
DefaultNumberAxisEditor. setAxisProperties(Axis axis)
Sets the properties of the specified axis to match the properties defined on this panel.void
DefaultValueAxisEditor. setAxisProperties(Axis axis)
Sets the properties of the specified axis to match the properties defined on this panel.Constructors in org.jfree.chart.editor with parameters of type Axis Constructor Description DefaultAxisEditor(Axis axis)
Standard constructor: builds a panel for displaying/editing the properties of the specified axis. -
Uses of Axis in org.jfree.chart.entity
Fields in org.jfree.chart.entity declared as Axis Modifier and Type Field Description private Axis
AxisEntity. axis
The axis for the entity.Methods in org.jfree.chart.entity that return Axis Modifier and Type Method Description Axis
AxisEntity. getAxis()
Returns the axis that occupies the entity area.Constructors in org.jfree.chart.entity with parameters of type Axis Constructor Description AxisEntity(java.awt.Shape area, Axis axis)
Creates a new axis entity.AxisEntity(java.awt.Shape area, Axis axis, java.lang.String toolTipText)
Creates a new axis entity.AxisEntity(java.awt.Shape area, Axis axis, java.lang.String toolTipText, java.lang.String urlText)
Creates a new axis entity. -
Uses of Axis in org.jfree.chart.event
Fields in org.jfree.chart.event declared as Axis Modifier and Type Field Description private Axis
AxisChangeEvent. axis
The axis that generated the change 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.plot
Methods in org.jfree.chart.plot that return types with arguments of type Axis Modifier and Type Method Description protected java.util.Map<Axis,AxisState>
XYPlot. drawAxes(java.awt.Graphics2D g2, java.awt.geom.Rectangle2D plotArea, java.awt.geom.Rectangle2D dataArea, PlotRenderingInfo plotState)
A utility method for drawing the axes.
-