1、报表显示字段过长
形态设置——if(len($$$)>20,left($$$,20)+'...',$$$)
其他——内容提示——=$$$
2、旋风图X轴均为正值显示
X轴轴标签格式
function(){if(this>0) return this; else return this*(-1); }
3、圆圈标记点
<div style="width: 25px;height: 25px;background-color:#b4cbd6;border-radius: 50%; text-align:center; line-height:25px;"><div style="color:white">1</div></div>
4、多系列自定义提示(如实际系列数为3个,需求只需界面展示3个系列,但所有系列需在提示时全部展示出来)详见如图:
function(){ return this.category+'<br/>'
+this.points[0].seriesName+":"+this.points[0].value+'<br/>'
+this.points[1].seriesName+":"+this.points[1].value+'<br/>'
+"XXXX"+":"+Math.round(this.points[3].value*100,2)+"%"
;}
|