Echarts 图表 tooltip 加单位 和 坐标轴指示器

22 阅读1分钟

image.png

官方文档:Documentation - Apache ECharts

核心代码:

tooltip: {
    trigger: 'axis',
    axisPointer: {
        type: 'cross',
        label: {
            backgroundColor: '#6E7079'
        }
    },
    valueFormatter: function(value) {
        return value + '%';
    }
},