使用echarts富文本标签为坐标轴添加图片
Posted flashing-magic
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用echarts富文本标签为坐标轴添加图片相关的知识,希望对你有一定的参考价值。
富文本主要用到formatter和rich,formatter用于自定义格式,rich负责样式。
想要在轴上加图片,先定义格式,比如我想给x轴上每一个标签文本上方加同样的图片
1 formatter:function(value){ 2 return: `{img|} {value|${value}}` 3 } 4 rich:{ 5 value:{fontsize:20}, 6 img:{ 7 height:15, 8 backgroundColor:{ image:‘图片路径‘ } 9 } 10 }
formatter中的{|}表示自定义,img相当于html中的标签,在rich中为img设置样式。rich中的value是设置文本的样式。
formatter有两个参数,一个是value,代表x轴上的默认标签文本,另一个是index,代表标签文本的索引,从0开始。
所以如果想给每个文本前加不同的图片,只需这样
1 formatter:function(value,index){ 2 return: `{img${index}|} {value|${value}}` 3 } 4 rich:{ 5 value:{fontsize:20}, 6 img0:{ 7 height:15, 8 backgroundColor:{ image:‘图片路径‘ } 9 }, 10 img1:{ 11 height:15, backgroundColor:{ image:‘图片路径‘ } 12 }, 13 img2:{ 14 height:15, backgroundColor:{ image:‘图片路径‘ } 15 } 16 }
如果想为标题加图片也是差不多的,甚至不需要用到formatter,直接在title下的text中写:{a|}标题内容
title:{ text:‘{a|}标题文本‘ , rich:{ ... } }
以上是关于使用echarts富文本标签为坐标轴添加图片的主要内容,如果未能解决你的问题,请参考以下文章
iOS图文混排之 NSAttachmentAttributeName 创建带有图片的富文本(案例:展示信用卡标签)