echarts tooltip 自定义formatter怎么设置颜色?

Posted 杨浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts tooltip 自定义formatter怎么设置颜色?相关的知识,希望对你有一定的参考价值。

1 formatter: function(params) {
2     var result = ‘‘;
3     params.forEach(function (item) {
4         result += <span style="display:inline-block;margin-right:5px;border-radius:10px;width:9px;height:9px;background-color: + item.color + "></span>;
5     });
6 
7     return result;
8 }

 

以上是关于echarts tooltip 自定义formatter怎么设置颜色?的主要内容,如果未能解决你的问题,请参考以下文章

echarts 柱状图自定义tooltip的内容

echarts的tooltip展示自定义值

Echarts 的悬浮框tooltip显示自定义格式化

echarts中自定义tooltip的换行问题

echarts tooltip 自定义formatter怎么设置颜色?

vue-echarts-v3 使用 tooltip显示内容自定义