JavaFX BarChart doesn't update
问题 I have the following Controller for my window: package window; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.chart.BarChart; import javafx.scene.chart.CategoryAxis; import javafx.scene.chart.NumberAxis; import javafx.scene.chart.XYChart; import java.util.Map; import java.util.SortedMap; public class StatisticsController { @FXML private BarChart<String, Number> barChartHistogram; private SortedMap<String, Integer> _points; final CategoryAxis xAxis = new