Package | Description |
---|---|
org.jfree.chart.axis |
Axis classes and interfaces.
|
Modifier and Type | Class and Description |
---|---|
class |
NumberTickUnitSource
A tick unit source implementation that returns NumberTickUnit instances
that are multiples of 1, 2 or 5 times some power of 10.
|
class |
StandardTickUnitSource
A source that can used by the
NumberAxis class to obtain a
suitable TickUnit . |
class |
TickUnits
A collection of tick units, used by the
DateAxis and
NumberAxis classes. |
Modifier and Type | Method and Description |
---|---|
static TickUnitSource |
NumberAxis.createIntegerTickUnits()
Returns a collection of tick units for integer values.
|
static TickUnitSource |
NumberAxis.createIntegerTickUnits(java.util.Locale locale)
Returns a collection of tick units for integer values.
|
static TickUnitSource |
LogAxis.createLogTickUnits(java.util.Locale locale)
Deprecated.
This method is no longer used internally and will be removed
from a future version. If you need this method, copy the source
code into your project.
|
static TickUnitSource |
DateAxis.createStandardDateTickUnits()
Returns a collection of standard date tick units that uses the default
time zone.
|
static TickUnitSource |
DateAxis.createStandardDateTickUnits(java.util.TimeZone zone)
Deprecated.
Since 1.0.11, use
DateAxis.createStandardDateTickUnits(
TimeZone, Locale) to explicitly set the locale as well as the
time zone. |
static TickUnitSource |
DateAxis.createStandardDateTickUnits(java.util.TimeZone zone,
java.util.Locale locale)
Returns a collection of standard date tick units.
|
static TickUnitSource |
NumberAxis.createStandardTickUnits()
Creates the standard tick units.
|
static TickUnitSource |
NumberAxis.createStandardTickUnits(java.util.Locale locale)
Creates a collection of standard tick units.
|
TickUnitSource |
ValueAxis.getStandardTickUnits()
Returns the source for obtaining standard tick units for the axis.
|
Modifier and Type | Method and Description |
---|---|
void |
ValueAxis.setStandardTickUnits(TickUnitSource source)
Sets the source for obtaining standard tick units for the axis and sends
an
AxisChangeEvent to all registered listeners. |
Constructor and Description |
---|
ValueAxis(java.lang.String label,
TickUnitSource standardTickUnits)
Constructs a value axis.
|