当我想在GWT中添加LineChart小部件时,我收到此错误: “无法读取null的属性'0'
事实上,我在工作中编写了程序,它运行没有任何问题。但是,它不会在我的个人身上运行(尽管我使用相同的库和环境)。当我点击createChartButton时,我的图表出现在工作中。但是这个错误出现在我的个人电脑上。我错过了什么错误?
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);
}
}