We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdbb23f commit 075a104Copy full SHA for 075a104
src/store/ChartAdapterStore.ts
@@ -289,7 +289,7 @@ export default class ChartAdapterStore {
289
this.touchValues = { ...this.touchValues, deltaXTotal, deltaYTotal };
290
291
if (isForcedScrollArea && isVerticalScroll) {
292
- e.stopPropagation();
+ e.stopImmediatePropagation();
293
if (shouldForceMaxScroll) {
294
clearTimeout(this.scrollChartParentOnTouchTimer);
295
this.scrollableChartParent?.scrollTo({
@@ -309,7 +309,7 @@ export default class ChartAdapterStore {
309
});
310
this.scrollChartParentOnTouchTimer = undefined;
311
this.touchValues = { ...this.touchValues, deltaYTotal: 0, deltaXTotal: 0 };
312
- }, 100);
+ }, 150);
313
}
314
315
0 commit comments