小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序在使用echarts后滑动到echarts部分后就无法滑动了。ios端有这个问题,鸿蒙和安卓是好用的。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
升级微信版本后,可正常滑动,不用修改代码
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
今天修复了吗,这个问题突然没了?
兄弟,我刚也复现了,iOS下真机有问题,安卓没问题
initChart_fb: function (fbData) {
this.chart7 = this.selectComponent('#echart-fb'); //去获取echarts
this.chart7.init((canvas, width, height, dpr) => {
const chart = echarts.init(canvas, 'roma', {
width: width,
height: height,
devicePixelRatio: dpr
});
canvas.setChart(chart);
var option = {
tooltip: {
trigger: 'item',
formatter(params) {
//params 主要在上面的代码中push进去 自己所需的数据 params的data就能拿到
return params.data.name;
},
series: [
{
nodeClick: 'zoomToNode',
leafDepth: 1,
roam: false,
breadcrumb: {
top: '92%',
name: "分布",
type: 'treemap',
itemStyle: {
borderColor: '#fff',
borderWidth: 1,
data: fbData
}
]
};
chart.setOption(option);
return chart;
})
有代码片段吗 看看
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
升级微信版本后,可正常滑动,不用修改代码
今天修复了吗,这个问题突然没了?
兄弟,我刚也复现了,iOS下真机有问题,安卓没问题
bindtouchstart eventhandle 否 手指触摸动作开始 1.0.0
bindtouchmove eventhandle 否 手指触摸后移动 1.0.0
bindtouchend eventhandle 否 手指触摸动作结束 1.0.0
中任意一个,哪怕绑定方法中啥都不干,就没法滑动了
initChart_fb: function (fbData) {
this.chart7 = this.selectComponent('#echart-fb'); //去获取echarts
this.chart7.init((canvas, width, height, dpr) => {
const chart = echarts.init(canvas, 'roma', {
width: width,
height: height,
devicePixelRatio: dpr
});
canvas.setChart(chart);
var option = {
tooltip: {
trigger: 'item',
formatter(params) {
//params 主要在上面的代码中push进去 自己所需的数据 params的data就能拿到
return params.data.name;
},
},
series: [
{
nodeClick: 'zoomToNode',
leafDepth: 1,
roam: false,
breadcrumb: {
top: '92%',
},
name: "分布",
type: 'treemap',
itemStyle: {
borderColor: '#fff',
borderWidth: 1,
},
data: fbData
}
]
};
chart.setOption(option);
return chart;
})
},
有代码片段吗 看看