我有一个 JSF 应用程序,在哪里
- 用户按下按钮,然后
- 一个新的数据项被添加到图表和
- 图表应重新绘制。
重新绘制图表的正确方法是什么?
目前,我在托管 bean 中有以下代码,它处理按钮按下事件:
public void simulateYearButtonAction()
{
// Update other UI elements here
this.updateChart();
}
private void updateBirthsChart() {
final FacesContext context = FacesContext.getCurrentInstance();
final ChartBean bean =
(ChartBean) context.getApplication().evaluateExpressionGet(
context, "#{chartBean}", ChartBean.class);
final DataStore dataStore = (DataStore)this.simulationFacade;
bean.addBirthsData(this.year-1, dataStore.getValue(DataStoreValueType.BIRTHS_LAST_YEAR));
}
在ChartBean
我向图表系列添加一个新数据项
public ChartBean() {
createCategoryModel();
}
private void createCategoryModel() {
categoryModel = new CartesianChartModel();
birthsSeries = new ChartSeries();
birthsSeries.setLabel("Рождения");
birthsSeries.set(2012, 0);
categoryModel.addSeries(birthsSeries);
}
public void addBirthsData(final int aYear, final double aNumberOfBirths) {
this.birthsSeries.set(aYear, aNumberOfBirths);
}
该页面ChartBean
以这种方式使用:
<p:lineChart id="category" value="#{chartBean.categoryModel}"
legendPosition="e" title="Демографическая динамика" minX="2012" maxX="2112"
style="height:300px;margin-top:20px" />
我不知道如何告诉图表它现在应该更新(并显示新数据)。