图表自定义多系列提示
https://help.fanruan.com/finereport10.0/doc-view-3245.html?source=4
单元格接口
https://help.fanruan.com/finereport10.0/doc-view-4008.html
自定义模式,需要把HTML解析点上,所有单元格接使用js支持jqery模式,也就是
$("td[id^=A1-]").text();来获取单元格数据。其它_g().getCellValue(cell,null) 等不支持。
代码如下:
---------------------------------------------------------------------------------------------------
//上方不能有空行
function(){
//定义取得单元格数据
var a = $("td[id^=A1-0]").text();
//拼写返回数据
var points = this.points;
var value = "" + this.category;
for(var i = 0;i < points.length;i++) {
if(points[i].series.visible){
value += ''+"●"+points[i].seriesName+':'+points[i].value+a;
}
}
return value+"";
}
----------------------------------------------------------------------------------------------------
样式自己研究吧,只能帮你到这了!