| java.lang.Object org.jfree.chart.axis.Tick org.jfree.chart.axis.CategoryTick
Constructor Summary | |
public | CategoryTick(Comparable category, TextBlock label, TextBlockAnchor labelAnchor, TextAnchor rotationAnchor, double angle) Creates a new tick. |
Method Summary | |
public boolean | equals(Object obj) Tests this category tick for equality with an arbitrary object.
Parameters: obj - the object (null permitted). | public Comparable | getCategory() Returns the category. | public TextBlock | getLabel() Returns the label. | public TextBlockAnchor | getLabelAnchor() Returns the label anchor. | public int | hashCode() Returns a hash code for this object. |
CategoryTick | public CategoryTick(Comparable category, TextBlock label, TextBlockAnchor labelAnchor, TextAnchor rotationAnchor, double angle)(Code) | | Creates a new tick.
Parameters: category - the category. Parameters: label - the label. Parameters: labelAnchor - the label anchor. Parameters: rotationAnchor - the rotation anchor. Parameters: angle - the rotation angle (in radians). |
equals | public boolean equals(Object obj)(Code) | | Tests this category tick for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
getCategory | public Comparable getCategory()(Code) | | Returns the category.
The category. |
getLabel | public TextBlock getLabel()(Code) | | Returns the label.
The label. |
getLabelAnchor | public TextBlockAnchor getLabelAnchor()(Code) | | Returns the label anchor.
The label anchor. |
hashCode | public int hashCode()(Code) | | Returns a hash code for this object.
A hash code. |
|
|