| java.lang.Object org.jfree.chart.axis.Tick org.jfree.chart.axis.ValueTick
All known Subclasses: org.jfree.chart.axis.DateTick, org.jfree.chart.axis.NumberTick,
ValueTick | abstract public class ValueTick extends Tick (Code) | | A value tick.
|
Constructor Summary | |
public | ValueTick(double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new value tick. |
Method Summary | |
public boolean | equals(Object obj) Tests this tick for equality with an arbitrary object.
Parameters: obj - the object to test (null permitted). | public double | getValue() Returns the value. |
ValueTick | public ValueTick(double value, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle)(Code) | | Creates a new value tick.
Parameters: value - the value. Parameters: label - the label. Parameters: textAnchor - the part of the label that is aligned to the anchor point. Parameters: rotationAnchor - defines the rotation point relative to the label. Parameters: angle - the rotation angle (in radians). |
equals | public boolean equals(Object obj)(Code) | | Tests this tick for equality with an arbitrary object.
Parameters: obj - the object to test (null permitted). A boolean. |
getValue | public double getValue()(Code) | | Returns the value.
The value. |
|
|