Package org.jfree.chart.axis
Class ValueTick
java.lang.Object
org.jfree.chart.axis.Tick
org.jfree.chart.axis.ValueTick
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
DateTick
,LogTick
,NumberTick
A value tick.
- See Also:
-
Constructor Summary
ConstructorDescriptionValueTick
(double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new value tick.ValueTick
(TickType tickType, double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new value tick. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Tests this tick for equality with an arbitrary object.Returns the tick type (major or minor).double
getValue()
Returns the value.Methods inherited from class org.jfree.chart.axis.Tick
canEqual, clone, getAngle, getRotationAnchor, getText, getTextAnchor, hashCode, toString
-
Constructor Details
-
ValueTick
public ValueTick(double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new value tick.- Parameters:
value
- the value.label
- the label.textAnchor
- the part of the label that is aligned to the anchor point.rotationAnchor
- defines the rotation point relative to the label.angle
- the rotation angle (in radians).
-
ValueTick
public ValueTick(TickType tickType, double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new value tick.- Parameters:
tickType
- the tick type (major or minor,null
not permitted).value
- the value.label
- the label.textAnchor
- the part of the label that is aligned to the anchor point.rotationAnchor
- defines the rotation point relative to the label.angle
- the rotation angle (in radians).
-
-
Method Details