折线图获取x轴数据

 myChart.on('click', 'xAxis.category', function (params) { 
    // params.value x轴的数据
 });

更改下列属性即可 hin简单

 xAxis: { 
          type: 'category',
          data: [],
          axisLabel: { 
            clickable: true
          },
          silent: false,
          triggerEvent: true
        },
    原文作者:狂暴草鱼卷
    原文地址: https://blog.csdn.net/weixin_47353884/article/details/122343052
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞