在 ECharts 中,你可以通过配置 tooltip 的 textStyle 属性来设置提示框浮层文本的样式。以下是一个例子,演示如何设置 Grid 组件以及提示框浮层文本的样式:
option = {
    grid: {
        left: '10%',
        right: '10%',
        bottom: '10%'
    },
    tooltip: {
        show: true,
        trigger: 'axis',
        backgroundColor: 'rgba(255, 255, 255, 0.8)',
        borderColor: '#999',
        borderWidth: 1,
        padding: [10, 15],
        formatter: function (params) {
            var content = '<div style="text-align: left;">';
            content += '<p style="font-weight: bold; font-size: 16px;">' + params[0].name + '</p>';  // X 轴对应的数据名称

            params.forEach(function (item) {
                // 遍历每个系列的数据项
                content += '<p style="color: ' + item.color + ';">' + 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
            }
        },
        textStyle: {
            color: '#333',           // 提示框浮层文本的颜色
            fontSize: 14,            // 提示框浮层文本的字体大小
            fontFamily: 'Arial',     // 提示框浮层文本的字体样式
            fontWeight: 'normal',    // 提示框浮层文本的字体粗细
            fontStyle: 'normal',     // 提示框浮层文本的字体风格
            lineHeight: 1.5           // 提示框浮层文本的行高
        }
    },
    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]
        }
    ]
};

在上述配置中,textStyle 属性用于设置提示框浮层文本的样式,包括颜色、字体大小、字体样式、字体粗细、字体风格以及行高等。

请根据实际需求调整这些属性以满足你的要求。


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