关于CCSSlipLineChart滑动的问题
edison0951 opened this issue · 0 comments
edison0951 commented
CCFloat stickWidth = [self getDataStickWidth] if (pt1.x - _firstX > stickWidth) { [self moveToLeft]; } else if (pt1.x - _firstX < -stickWidth) { [self moveToRight]; }
这个计算的stickWidth有一些问题,当需要显示的数据间隔为1时,这个getDataStickWidth算出来的值会超过40,但是往左和往右边Move的距离不会超过20,所以会导致滑动没有任何效果