27
如何隱藏HBox中的項目,並將此項目使用的空間用於其他項目。JavaFX HBox隱藏項目
TitledPane legendPane = new TitledPane("Legend", _legend);
legendPane.setVisible(false);
LineChart chart = new LineChart<Number, Number>(_xAxis, _yAxis);
HBox hbox = new HBox(5);
hbox.getChildren().addAll(legendPane, chart);
在上面的代碼中,我希望圖表節點在隱藏圖例窗格時使用所有可用空間。
這似乎更直接,添加/刪除節點。 –