如何修改自定义图表块提示样式以及标签样式
在标签和提示内容的地方选择自定义(其他可通过HTML代码编写的地方同理);
可直接在其中填写HTML代码,来进行样式控制,以及背景图片等自定义(需勾选HTML解析)
function(){
return '<div style="background-image: url(/webroot/help/picture/111.png)">'+this.seriesName+this.value +'</div>';
}
this.category 分类
this.seriesName 系列
this.value 值
this.percentage 百分比
背景图片路径为(/webroot/help/picture/xxx.jpg)
需把图片存储在项目的相关路径下才可引用(个人路径:D:\FineReport_10.0\webapps\webroot\help\picture)
来源:CSDN
作者:清许丶
链接:https://blog.csdn.net/qq_43248658/article/details/103683189