大屏报表,有好几个report页面,由于个别页面展示的内容比较多,我想分别设置每个页面具有不同的滚动时间。 如何做到。 我只能改整体的刷新时间,不知道从页面report滚动到下一个report的滚动时间怎么设置
决策报表内报表块刷新插件 https://help.fanruan.com/finereport/doc-view-1752.html
-------------
刷新报表页面的方法总结 https://help.fanruan.com/finereport/doc-view-1857.html
报表块定时刷新,js语句如下
不需要整个页面刷新
setInterval(function() { _g().getWidgetByName('report0').gotoPage(1,"{}","lazy");}, 1000);
================
报表块分页接口 https://help.fanruan.com/finereport/doc-view-5347.html
···