Package org.jfree.chart.axis
Class LogTick
- java.lang.Object
-
- org.jfree.chart.axis.Tick
-
- org.jfree.chart.axis.ValueTick
-
- org.jfree.chart.axis.LogTick
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class LogTick extends ValueTick
A tick from aLogAxis.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.text.AttributedStringattributedLabelThe attributed string for the tick label.
-
Constructor Summary
Constructors Constructor Description LogTick(TickType type, double value, java.text.AttributedString label, TextAnchor textAnchor)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.text.AttributedStringgetAttributedLabel()Returns the attributed string for the tick label, ornullif there is no label.-
Methods inherited from class org.jfree.chart.axis.ValueTick
equals, getTickType, getValue
-
Methods inherited from class org.jfree.chart.axis.Tick
canEqual, clone, getAngle, getRotationAnchor, getText, getTextAnchor, hashCode, toString
-
-
-
-
Constructor Detail
-
LogTick
public LogTick(TickType type, double value, java.text.AttributedString label, TextAnchor textAnchor)
Creates a new instance.- Parameters:
type- the type (major or minor tick,nullnot permitted).value- the value.label- the label (nullpermitted).textAnchor- the text anchor.
-
-