Example usage for Java javafx.scene.chart CategoryAxis fields, constructors, methods, implement or subclass
The text is from its open source code.
CategoryAxis() Create a auto-ranging category axis with an empty list of categories. | |
CategoryAxis(ObservableList Create a category axis with the given categories. |
ObservableList | getCategories() Returns a ObservableList of categories plotted on this axis. |
double | getCategorySpacing() |
double | getDisplayPosition(String value) Get the display position along this axis for a given value. |
double | getEndMargin() |
double | getStartMargin() |
double | getZeroPosition() Get the display position of the zero line along this axis. |
void | setCategories(ObservableList The ordered list of categories plotted on this axis. |
void | setEndMargin(double value) |
void | setGapStartAndEnd(boolean value) |
void | setStartMargin(double value) |
String | toRealValue(double value) All axis values must be representable by some numeric value. |