在 ECharts 中,你可以通过配置 axisPointer 的 label 属性来为坐标轴指示器文本标签添加阴影效果。以下是一个例子,演示如何设置 Grid 组件以及坐标轴指示器的文本标签样式,包括阴影:
option = {
    grid: {
        left: '10%',
        right: '10%',
        bottom: '10%'
    },
    tooltip: {
        show: true,
        trigger: 'axis',
        axisPointer: {
            type: 'line',
            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)'  // 阴影颜色
            }
        }
    },
    xAxis: {
        type: 'category',
        data: ['Category1', 'Category2', 'Category3', 'Category4', 'Category5']
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            name: 'Series1',
            type: 'line',
            data: [5, 20, 36, 10, 10]
        }
    ]
};

在上述配置中,shadowBlur 属性用于设置阴影的模糊度,而 shadowColor 属性用于设置阴影的颜色。

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


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