vue echarts的饼图和柱状图怎么使用接口数据

vue echarts的饼图和柱状图怎么对接后台接口,使用接口数据?我写的是空白的,取不到数据

获取到后台数据之后,再去渲染或者跑echarts的饼图和柱状图的方法,然后把数据传过去

this.$http.post(url,JSON.stringify(params)).then(res => {
       this.echarts(res.data.data)
      }), (response) => {
      }

echarts(data){
  //这里写图表渲染的方法
}

axios请求回来 后 。赋值给 echarts option的data就行