Package | Description |
---|---|
org.jfree.chart.axis |
Axis classes and interfaces.
|
Modifier and Type | Field and Description |
---|---|
static DateTickUnit |
DateAxis.DEFAULT_DATE_TICK_UNIT
Deprecated.
As pointed out in bug #977, the SimpleDateFormat in this
object uses Calendar which is not thread safe...so you should
avoid reusing this instance and create a new instance as required.
|
Modifier and Type | Method and Description |
---|---|
DateTickUnit |
DateAxis.getTickUnit()
Returns the tick unit for the axis.
|
Modifier and Type | Method and Description |
---|---|
java.util.Date |
DateAxis.calculateHighestVisibleTickValue(DateTickUnit unit)
Calculates the value of the highest visible tick on the axis.
|
java.util.Date |
DateAxis.calculateLowestVisibleTickValue(DateTickUnit unit)
Calculates the value of the lowest visible tick on the axis.
|
protected java.util.Date |
DateAxis.nextStandardDate(java.util.Date date,
DateTickUnit unit)
Returns the first "standard" date (based on the specified field and
units).
|
protected java.util.Date |
DateAxis.previousStandardDate(java.util.Date date,
DateTickUnit unit)
Returns the previous "standard" date, for a given date and tick unit.
|
void |
DateAxis.setTickUnit(DateTickUnit unit)
Sets the tick unit for the axis.
|
void |
DateAxis.setTickUnit(DateTickUnit unit,
boolean notify,
boolean turnOffAutoSelection)
Sets the tick unit attribute and, if requested, sends an
AxisChangeEvent to all registered listeners. |