美文网首页
vue项目中使用apexcharts柱状图的单击

vue项目中使用apexcharts柱状图的单击

作者: BlackBright_ | 来源:发表于2019-11-21 16:07 被阅读0次

    柱状图点击调用methods中的方法相当于外部调用methods方法,定义vm在初始化中vm=this.即可使用vm调用内部方法。

    var vm = null
    export default{ 
    .....//此处省略
    data () {
    ...
    chartOptions:{
     events: {
        // 单击时候出发
        dataPointSelection: function (event, chartContext, config) {
                    console.log(config.dataPointIndex)
                    vm && vm.test()
                }
         }
    }
    ...
    },
    created: function () {
        vm = this
      },
     methods: {
       test() {
       }
     }
    }
    

    相关文章

      网友评论

          本文标题:vue项目中使用apexcharts柱状图的单击

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