List of usage examples for javafx.scene.chart CategoryAxis getEndMargin
public final double getEndMargin()
From source file:Main.java
@Override public void start(final Stage stage) { stage.setWidth(500);//from w ww .j ava 2 s . com stage.setHeight(500); Scene scene = new Scene(new Group()); VBox root = new VBox(); CategoryAxis lineXAxis = new CategoryAxis(getData()); System.out.println(lineXAxis.getEndMargin()); root.getChildren().addAll(lineXAxis); scene.setRoot(root); stage.setScene(scene); stage.show(); }