ECharts API 学习

echarts.init

 const initChart = () => {
    const chart = echarts.init(document.getElementById('traffic-bar'), {
      width: 300,
      heigtht: 100
    })
    chart.setOption(option)
  }

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