怎么样才能使图表打开时默认排序,自动触发控件的排序。
不太想用多个相同 SQL order by 。
选择对应的预览方式,加个加载结束事件,A1换成你图表所在单元格,预览时候就能自动排序了。
setTimeout(
function(){var a=FR.Chart.WebUtils.getChart("A1");
a.sort(true) }
,100);
function(){var a=FR.Chart.WebUtils.getChart("A1").getChartWithIndex(0);
a.sortChart(1) }
要么就是点交互属性的排序,要么就是sql order by一下 图表和单元格不一样
最好在sql中order by ,这样代价是最小的