在 ECharts 中,要通过 xAxis 配置来控制坐标轴指示器触发 tooltip,你可以使用 axisPointer 属性。以下是一个简单的示例:
option = {
    xAxis: {
        type: 'category',
        data: ['A', 'B', 'C', 'D', 'E'],
        axisPointer: {
            type: 'shadow', // 设置坐标轴指示器的类型,可以根据需要调整
            label: {
                show: true // 显示坐标轴指示器的 label
            }
        }
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            type: 'bar',
            data: [10, 20, 15, 25, 30]
        }
    ]
};

在上面的示例中,axisPointer 的 type 属性设置为 'shadow',表示使用阴影作为坐标轴指示器,你可以根据实际需求选择其他类型。同时,label 的 show 属性设置为 true,以显示坐标轴指示器的 label。

请根据你的具体需求进行调整,ECharts 提供了很多配置选项,你可以根据需要灵活配置。更详细的信息可以查阅 ECharts 的官方文档:[ECharts - AxisPointer](https://echarts.apache.org/zh/option.html#xAxis.axisPointer)。


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