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 classCategoryAxisAn axis that displays categories.classCategoryAxis3DAn axis that displays categories and has a 3D effect.classCyclicNumberAxisThis class extends NumberAxis and handles cycling.classDateAxisThe base class for axes that display dates.classExtendedCategoryAxisAn extended version of theCategoryAxisclass that supports sublabels on the axis.classLogarithmicAxisA numerical axis that uses a logarithmic scale.classNumberAxisAn axis for displaying numerical data.classNumberAxis3DA standard linear value axis, for values displayed vertically.classSubCategoryAxisA specialised category axis that can display sub-categories.classSymbolicAxisA standard linear value axis, for SYMBOLIC values.classValueAxisThe base class for axes that display value data, where values are measured using thedoubleprimitive.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 voidAxisCollection. 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 AxisAxisChangeEvent. 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 AxisPropertyEditPanelAxisPropertyEditPanel. getInstance(Axis axis)A static method that returns a panel that is appropriate for the axis type.voidAxisPropertyEditPanel. 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.