当前位置:   article > 正文

微信小程序动态数据渲染echarts图表及不渲染图表问题_echarts 小程序options改变 没有重新渲染图表

echarts 小程序options改变 没有重新渲染图表
import echarts from '../../../ec-canvas/echarts'
const app = getApp();
var recipeChart = null; //全局变量 存储动态查询的数据


function initChart(canvas, width, height) {
  const chart = echarts.init(canvas, null, {
    width: width,
    height: height
  });
  canvas.setChart(chart);

  var option = {
    color: ["#36648b", "#2eaa8e", "#ffa500"],
    title: {
      text: '食物成分分析',
      left: 'center',
      textStyle: {
        fontWeight: 'bold',
      },
      subtext: '总热量 ' + recipeChart.calorie + ' 千卡'
    },
    tooltip: {
      trigger: 'item',
      formatter: "{a}\n{b}: {c} ({d}%)"
    },
    legend: {
      orient: 'vertical',
      x: 'left',
      data: ['碳水化合物', '脂肪', '蛋白质'],
      textStyle: {
        fontSize: '12',
      }
    },

    series: [
      {
        name: '主要成分',
        type: 'pie',
        radius: '50%',
        center: ['50%', '60%'],
        label: {
          normal: {
            show: true,
            position: 'outside',
            formatter: '{b}',
            fontSize: 13
          },
          emphasis: {
            show: true,
            textStyle: {
              fontSize: '13'
            }
          }
        },
        data: [
          { value: recipeChart.carbohydrate, name: "碳水化合物" },
          { value: recipeChart.fat, name: "脂肪" },
          { value: recipeChart.protein, name: "蛋白质" }
        ]
      }
    ]
  }
  chart.setOption(option);
  return chart;
}

Page({
  data: {
    ec: {
      onInit: initChart
    }
  },
  getMyData() {
    wx.request({
      url: urlBase + 'url',
      method: 'POST',
      data: {
        repId: rid
      },
      success(res) {
        // console.log(res.data);
        recipeChart = res.data;
      }
    });
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86

6.7 – 再次使用的时候发现无论如何都不渲染 ,跑起来显示都是空白,对比了很久才找到问题。。在此记录一下。
如果发现wxml渲染不了echarts (js写正确的前提下)

  1. 需要在wxml中添加样式
<view class="margin-top-lg echart-position">
  <ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ec}}"></ec-canvas>
</view>
  • 1
  • 2
  • 3
.echart-position {
  position:relative;
  height: 280px;
  overflow:hidden;
}
  • 1
  • 2
  • 3
  • 4
  • 5

2.需要在json文件中引入echarts

{
  "usingComponents": {
    "ec-canvas": "../../../ec-canvas/ec-canvas"
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/526622
推荐阅读
相关标签
  

闽ICP备14008679号