echarts图表默认选中高亮





核心代码:

随机高亮选中(这里的3是,图表内柱子的个数)

let num = Math.floor(Math.random() * 3) + 0;
  if (num == 0 || num == 1) {
    num = 0;
  }
  setTimeout(function () {
    myChart.dispatchAction({
      type: "highlight",
      seriesIndex: [0, 1, 2, 3, 4, 5, 6, 7, 8],
      dataIndex: num,
    });
    myChart.dispatchAction({
      type: "showTip",
      seriesIndex: 0,
      dataIndex: num,
    });
  }, 1000);

效果:

echarts图表默认选中高亮_第1张图片

你可能感兴趣的:(echarts,前端,javascript)