var f = FR.Chart.WebUtils.getChart("chart0");//获取图表块chart0
f.dataRefresh();//刷新图表块chart0
请教: 刷新图表块, 用dataRefresh(), 如何刷新的同时传递参数?
报表块刷新传参格式是这样的: _g().getWidgetByName("report0").gotoPage(1,e,true);//联动表
FR.Chart.WebUtils.changeParameter(
'chart0', {
"para": "value"
}
);
多个加逗号分隔即可
FR.Chart.WebUtils.changeParameter('chart0', {"area": "华北" });