参考图表开启自动数据点提示轮播接口-https://help.fanruan.com/finereport/doc-view-2663.html
getChartWithIndex(0);这个0就是指图表的序号,0开始是第一个,第二个是1
就是改成这样
setTimeout(function(){
var vanchart =FR.Chart.WebUtils.getChart("chart0").getChartWithIndex(0);
vanchart.openAutoTooltip();
var vanchart2=FR.Chart.WebUtils.getChart("chart0").getChartWithIndex(1);
vanchart2.openAutoTooltip();
},3000);