在 ECharts 中,你可以通过配置 tooltip 的 formatter 属性来自定义提示框浮层的内容格式。以下是一个例子,演示如何设置 Grid 组件以及提示框浮层的内容格式:
option = {
    grid: {
        left: '10%',
        right: '10%',
        bottom: '10%'
    },
    tooltip: {
        show: true,
        trigger: 'axis',
        formatter: function (params) {
            var content = '<div style="text-align: left;">';
            content += '<p>' + params[0].name + '</p>';  // X 轴对应的数据名称

            params.forEach(function (item) {
                // 遍历每个系列的数据项
                content += '<p>' + item.seriesName + ': ' + item.value + ' units</p>';
            });

            content += '</div>';
            return content;
        },
        axisPointer: {
            type: 'line',
            lineStyle: {
                color: 'red',
                width: 2,
                type: 'dashed'
            },
            label: {
                show: true,
                precision: 2,
                formatter: '{value} units',
                backgroundColor: 'rgba(255, 255, 255, 0.8)',
                borderColor: '#999',
                borderWidth: 1,
                padding: [5, 10],
                color: '#333',
                fontSize: 12,
                fontFamily: 'Arial',
                fontWeight: 'bold',
                fontStyle: 'italic',
                lineHeight: 1.5,
                shadowBlur: 10,
                shadowColor: 'rgba(0, 0, 0, 0.3)'
            },
            shadowStyle: {
                color: 'rgba(0, 0, 0, 0.3)',
                shadowBlur: 10,
                shadowOffsetX: 3,
                shadowOffsetY: 3
            }
        }
    },
    xAxis: {
        type: 'category',
        data: ['Category1', 'Category2', 'Category3', 'Category4', 'Category5']
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            name: 'Series1',
            type: 'line',
            data: [5, 20, 36, 10, 10]
        },
        {
            name: 'Series2',
            type: 'line',
            data: [15, 30, 46, 20, 20]
        }
    ]
};

在上述配置中,formatter 属性用于定义一个函数,该函数接收一个参数 params,其中包含了鼠标位置对应的数据信息。通过遍历 params,你可以获取每个系列的名称、对应的值等信息,然后构造自定义的 HTML 内容,最终返回该内容。

请根据实际需求调整格式化函数,以满足你的要求。


转载请注明出处:http://www.zyzy.cn/article/detail/5153/ECharts