在 ECharts 中,坐标轴指示器阴影样式可以通过 axisPointer 的 shadowStyle 属性进行配置。以下是一个例子,演示如何设置 Grid 组件以及坐标轴指示器的阴影样式:
option = {
    grid: {
        left: '10%',
        right: '10%',
        bottom: '10%'
    },
    tooltip: {
        show: true,
        trigger: 'axis',
        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]
        }
    ]
};

在上述配置中,shadowStyle 属性用于设置坐标轴指示器阴影的样式,包括颜色、模糊度以及水平和垂直偏移。你可以根据实际需求调整这些属性。




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