Uses of Class
org.faceless.graph2.Axis
-
Packages that use Axis Package Description org.faceless.graph2 -
-
Uses of Axis in org.faceless.graph2
Subclasses of Axis in org.faceless.graph2 Modifier and Type Class Description class
BarAxis
A subclass ofAxis
useful for plotting Bar Series.class
DateAxis
A subclass of Axis to be used for plotting date values.class
GapAxis
A type of Axis that can be used to put a "gap" in the middle of an axis.class
LogAxis
A type of Axis that can be used to plot Logarithmic values.class
MarkerAxis
class
NullAxis
A class of Axis which doesn't display any values at all.class
NumericAxis
The most common type of Axis, a NumericAxis is used to display numbers, either as integers, real numbers, percentages, currency amounts or any type of format that can be created with aNumberFormat
.class
ZAxis
A subclass ofAxis
which can only be used on the Z-axis of a graph.Methods in org.faceless.graph2 that return Axis Modifier and Type Method Description Axis
AxesGraph. getAxis(int pos)
Get the axis that's currently in the specified position on the graph.Methods in org.faceless.graph2 with parameters of type Axis Modifier and Type Method Description void
AxesGraph. setAxis(int pos, Axis axis)
Set the specified axis.Constructors in org.faceless.graph2 with parameters of type Axis Constructor Description GapAxis(Axis axis, double gapstart, double gapend)
Create a new GapAxis which will skip values between the supplied parametersLogAxis(Axis axis)
Create a new LogAxis with a base of 10LogAxis(Axis axis, double base)
Create a new LogAxis with the specified base
-