图表开启自动数据点提示轮播接口-https://help.fanruan.com/finereport/doc-view-2663.html
=============
假设三个参数
那就给查询控件,初始化后事件,js代码
var th = this;
var i = 0;
setInterval(function() {
if (i == 0) {
th.options.form.getWidgetByName("参数控件名").setValue("1");
contentPane.parameterCommit();
i = 1;
} else if (i == 1) {
th.options.form.getWidgetByName("参数控件名").setValue("2");
contentPane.parameterCommit();
i = 2;
} else {
th.options.form.getWidgetByName("参数控件名").setValue("3");
contentPane.parameterCommit();
i = 0;
}
}, 5000)