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-line" canvas-id="mychart-line" ec="{{ ec }}"></ec-canvas> </view> ec-canvas { width: 100%; height: 100%; } .chars1{ height: 650rpx; width: 100%; }
微信小程序echarts组件数据显示不出来?微信小程序echarts组件数据显示不出来
2021-10-22是的
第二次扫小程序码进入小程序,能获取到场景值吗?第一次是通过搜索小程序进入的小程序,获取到场景值1001,退出后再次通过扫小程序码进入小程序,可以获取到第二次进入的场景值吗(携带参数)
2019-08-30