ecomfe / echarts-for-weixin

基于 Apache ECharts 的微信小程序图表库
BSD 3-Clause "New" or "Revised" License
7.06k stars 1.58k forks source link

datazoom滑动的问题 #759

Open liuqqcode opened 3 years ago

liuqqcode commented 3 years ago

在真机上滑动出现卡顿,滑不动的问题,在ec-canvas.js的 touchStarttouchMove里面加入 var touch = this.getTouch(e.touches);

getTouch方法 getTouch(touches){ let touch ; for (let i = 0; i < touches.length; ++i) { touch = touches[i]; if(touch.x && touch.y){ touch.offsetX = touch.x; touch.offsetY = touch.y; break } } return touch; },

kingslary commented 3 years ago

确实有用,谢谢!

jinshan3690 commented 3 years ago

牛逼

wozien commented 1 year ago

试试看