收藏
回答

微信小程序echarts组件数据显示不出来?

微信小程序echarts组件数据显示不出来

回答关注问题邀请回答
收藏

4 个回答

  • 超超
    超超
    2021-10-22

    let chart1 = null;

    let chart = null;

    function initChart(canvas, width, height, dpr) {

      chart = echarts.init(canvas, null, {

        width: width,

        height: height,

        devicePixelRatio: dpr // new

      });

      canvas.setChart(chart);

      var option = {

        xAxis: {

          type: 'category',

          data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']

        },

        yAxis: {

          type: 'value'

        },

        series: [

          {

            data: [820, 932, 901, 934, 1290, 1330, 1320],

            type: 'line',

            smooth: true

          }

        ]

      };


      chart.setOption(option);

      return chart;

    }

     ec: {

               onInit: initChart

         },

    <view class="chars1">

      <ec-canvas id="mychart-dom-linecanvas-id="mychart-lineec="{{ ec }}"></ec-canvas>

    </view>

    ec-canvas {

      width: 100%;

      height: 100%;

    }

    .chars1{

        height: 650rpx;

        width: 100%;

    }


    2021-10-22
    有用
    回复 1
    • 超超
      超超
      2021-10-22
      2021-10-22
      回复
  • 嘿嘿
    嘿嘿
    2021-10-22

    贴代码总不能冥想把~

    2021-10-22
    有用
    回复
  • 正周
    正周
    2021-10-22

    我猜 数据格式可能不对。

    2021-10-22
    有用
    回复
  •  南风 .
     南风 .
    2021-10-22

    什么都没有,我们怎么能猜的出来?

    2021-10-22
    有用
    回复
登录 后发表内容