GWT に LineChart ウィジェットを追加しようとすると、次のエラーが表示されます: 「null のプロパティ '0' を読み取れません」
実際、仕事でプログラムを書きましたが、問題なく動作します。ただし、私の個人では動作しません(同じライブラリと環境を使用していますが)。createChartButton をクリックするだけで、作業中にチャートが表示されます。しかし、このエラーは私の個人の PC で発生します。私が見逃している間違いは何ですか?
TestChart.ui.xml:
<g:Button ui:field="createChartButton" text="Create Chart" />
<g:VerticalPanel ui:field="chartPanel" visible="false" />
ChartView.java:
@UiHandler("createChartButton")
public void onCreateChartButtonClick(ClickEvent event){
if(presenter != null){
chart = presenter.onCreateChartButtonClicked(event); // Prepares a line chart and returns it.
this.chartPanel.clear();
this.chartPanel.add(chart);
this.chartPanel.setVisible(true);
}
}