美文网首页echats
Echarts的Tooltip里不显示数值为0的数据

Echarts的Tooltip里不显示数值为0的数据

作者: Frank_Fang | 来源:发表于2021-06-23 11:04 被阅读0次
tooltip: {
  trigger: 'axis',
  formatter: function (params) {
    var res = `${params[0].name} <br/>`
    for (const item of params) {
      if (item.value !== 0) {
        res += `<span style="background: ${item.color}; height:10px; width: 10px; border-radius: 50%;display: inline-block;margin-right:10px;"></span> ${item.seriesName} :${item.value}<br/>`
      }
    }
    return res
  }
},

相关文章

网友评论

    本文标题:Echarts的Tooltip里不显示数值为0的数据

    本文链接:https://www.haomeiwen.com/subject/lvlheltx.html