Uses of Class
org.jfree.chart.axis.CategoryLabelPosition
Package | Description |
---|---|
org.jfree.chart.axis |
Axis classes and interfaces.
|
-
Uses of CategoryLabelPosition in org.jfree.chart.axis
Methods in org.jfree.chart.axis that return CategoryLabelPosition Modifier and Type Method Description CategoryLabelPosition
CategoryAxis. getBottomCategoryLabelPosition()
Deprecated.Use getCategoryLabelPositions().getLabelPosition(RectangleEdge.BOTTOM).CategoryLabelPosition
CategoryLabelPositions. getLabelPosition(org.jfree.ui.RectangleEdge edge)
Returns the category label position specification for an axis at the given location.CategoryLabelPosition
CategoryAxis. getLeftCategoryLabelPosition()
Deprecated.Use getCategoryLabelPositions().getLabelPosition(RectangleEdge.LEFT).CategoryLabelPosition
CategoryAxis. getRightCategoryLabelPosition()
Deprecated.Use getCategoryLabelPositions().getLabelPosition(RectangleEdge.RIGHT).CategoryLabelPosition
CategoryAxis. getTopCategoryLabelPosition()
Deprecated.Use getCategoryLabelPositions().getLabelPosition(RectangleEdge.TOP).Methods in org.jfree.chart.axis with parameters of type CategoryLabelPosition Modifier and Type Method Description static CategoryLabelPositions
CategoryLabelPositions. replaceBottomPosition(CategoryLabelPositions base, CategoryLabelPosition bottom)
Returns a new instance based on an existing instance but with the bottom position changed.static CategoryLabelPositions
CategoryLabelPositions. replaceLeftPosition(CategoryLabelPositions base, CategoryLabelPosition left)
Returns a new instance based on an existing instance but with the left position changed.static CategoryLabelPositions
CategoryLabelPositions. replaceRightPosition(CategoryLabelPositions base, CategoryLabelPosition right)
Returns a new instance based on an existing instance but with the right position changed.static CategoryLabelPositions
CategoryLabelPositions. replaceTopPosition(CategoryLabelPositions base, CategoryLabelPosition top)
Returns a new instance based on an existing instance but with the top position changed.void
CategoryAxis. setBottomCategoryLabelPosition(CategoryLabelPosition position)
Deprecated.Use setCategoryLabelPositions(...).void
CategoryAxis. setLeftCategoryLabelPosition(CategoryLabelPosition position)
Deprecated.Use setCategoryLabelPositions(...).void
CategoryAxis. setRightCategoryLabelPosition(CategoryLabelPosition position)
Deprecated.Use setLabelPositions(...).void
CategoryAxis. setTopCategoryLabelPosition(CategoryLabelPosition position)
Deprecated.Use setCategoryLabelPositions(...).Constructors in org.jfree.chart.axis with parameters of type CategoryLabelPosition Constructor Description CategoryLabelPositions(CategoryLabelPosition top, CategoryLabelPosition bottom, CategoryLabelPosition left, CategoryLabelPosition right)
Creates a new position specification.