小程序
小游戏
企业微信
微信支付
扫描小程序码分享
微信小程序echarts组件数据显示不出来
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
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;
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
贴代码总不能冥想把~
我猜 数据格式可能不对。
什么都没有,我们怎么能猜的出来?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
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%;
}
贴代码总不能冥想把~
我猜 数据格式可能不对。
什么都没有,我们怎么能猜的出来?