ECHART 折线图

301 阅读1分钟

基础折线图

  xAxis: {
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  },
  yAxis: {
    
  },
   tooltip: {
     trigger:'axis',//轴触发
     axisPointer: {
          type: 'cross',//显示一个十字光标 参考https://echarts.apache.org/zh/option.html#tooltip.axisPointer.type
           snap:false,
        },
   },
  series: [
    {
      data: [820, 932, 901, 934, 1290, 1330, 1320],
      type: 'line',
      //smooth: true
    }
  ]
};

x轴和y轴的的data写哪都行

写x轴 image.png 写y轴 image.png