echarts中自定义tooltip的换行问题

echarts中自定义tooltip的换行问题

使用extraCssText属性

 

在官网文档中描述

        tooltip: {
          trigger: 'item',
          show: true,
          formatter: '{b} : {c} ({d}%)',
          extraCssText: 'max-width:200px; white-space: pre-wrap;word-break: break-all;word-wrap: break-word;' // !!!后面两条属性必须加上,否则会出现纯数字不换行情况 
        },

 

 

 

posted @ 2023-12-04 19:27  rachelch  阅读(967)  评论(0编辑  收藏  举报