美文网首页
数据可视化图表库ECharts

数据可视化图表库ECharts

作者: puxiaotaoc | 来源:发表于2018-07-30 18:04 被阅读4次

    Demo:基于webpack+vue-cli
    首先要: npm i echarts --save
    然后在需要使用的地方进行导入

    <template lang="jade">
    #main(style="width:600px;height:400px;")
    </template>
    
    <script>
    export default {
      mounted() {
        this.showChart()
      },
      methods: {
        showChart() {
          var echarts = require('echarts')
          var myChart = echarts.init(document.getElementById('main'))
          // 绘制图表
          myChart.setOption({
            title: {
              text: 'ECharts 入门示例'
            },
            tooltip: {},
            xAxis: {
              data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
            },
            yAxis: {},
            series: [{
              name: '销量',
              type: 'bar',
              data: [5, 20, 36, 10, 10, 20]
            }]
          })
        }
      }
    }
    </script>
    
    <style lang="css">
    </style>
    
    
    最终效果

    相关文章

      网友评论

          本文标题:数据可视化图表库ECharts

          本文链接:https://www.haomeiwen.com/subject/juafvftx.html