vue中使用highcharts, 框选某一范围获得数据总和 chart.events.selection

vue中使用highcharts:
    1.安装highcharts-vue, highcharts第三方插件 npm install highcharts-vue --save      npm install highcharts --save
    2.view/main.js中引入highcharts-vue
        // highcharts的引入
        import HighchartsVue from 'highcharts-vue'        Vue.use(HighchartsVue)
        new Vue({
              el: '#app',
             router,
              i18n,
              store,
              render: h => h(App),
              methods: {
                    moreChart() {
                        var options = this.getMoreOptions(this.type)
                `        if (this.chart) {
                                this.chart.destroy()
                        }
                        // 初始化 Highcharts 图表
                        this.chart = new Highcharts.Chart('highcharts-more', options)
                    }
              }
        })
          // 新建一个chart.vue组件
        
        
    // demo.vue 配置chart options
      


 

你可能感兴趣的:(vue中使用highcharts, 框选某一范围获得数据总和 chart.events.selection)