Uses of Class
org.jfree.chart.axis.DateTickUnit
-
Packages that use DateTickUnit Package Description org.jfree.chart.axis Axis classes and interfaces. -
-
Uses of DateTickUnit in org.jfree.chart.axis
Fields in org.jfree.chart.axis declared as DateTickUnit Modifier and Type Field Description static DateTickUnitDateAxis. DEFAULT_DATE_TICK_UNITDeprecated.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.Methods in org.jfree.chart.axis that return DateTickUnit Modifier and Type Method Description DateTickUnitDateAxis. getTickUnit()Returns the tick unit for the axis.Methods in org.jfree.chart.axis with parameters of type DateTickUnit Modifier and Type Method Description java.util.DateDateAxis. calculateHighestVisibleTickValue(DateTickUnit unit)Calculates the value of the highest visible tick on the axis.java.util.DateDateAxis. calculateLowestVisibleTickValue(DateTickUnit unit)Calculates the value of the lowest visible tick on the axis.protected java.util.DateDateAxis. nextStandardDate(java.util.Date date, DateTickUnit unit)Returns the first "standard" date (based on the specified field and units).protected java.util.DateDateAxis. previousStandardDate(java.util.Date date, DateTickUnit unit)Returns the previous "standard" date, for a given date and tick unit.voidDateAxis. setTickUnit(DateTickUnit unit)Sets the tick unit for the axis.voidDateAxis. setTickUnit(DateTickUnit unit, boolean notify, boolean turnOffAutoSelection)Sets the tick unit attribute and, if requested, sends anAxisChangeEventto all registered listeners.
-