小程序开发:如何给echartInit() 动态传参到data[]?

在微信小程序中使用Echarts

在小程序中如何引用ECharts: 引用方式可查看ECharts官网

在开发过程中,我们需要从后台获取需要ECharts 展示的data数据;然后传递到ec-charts 组件当中,展示最新获取到的动态图表;

微信小程序中如何给ECharts 中动态传参到data[] ?

“talk is cheap,show me the code ”

// 以下以ECharts-Pie 作为示例:

detail.wxss:


.pieContainer {
  position:absolute;
  top:60vh;
  bottom:0;
  left:18px;
  right:0;
  width:50vw;
  height:100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  box-sizing:border-box;

} 
ec-canvas {
    width: 100%;
    height: 100%;
    /*border:1px solid red;*/
}
复制代码

detail.wxml:

"pieContainer">

  "mychart-dom-pie" 
  canvas-id="mychart-pie"
  ec="{
    

你可能感兴趣的:(javascript,后端,ViewUI)