You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config/Options/interaction/interaction.ts
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,8 @@ export default {
17
17
* @property {boolean} [interaction.brighten=true] Make brighter for the selected area (ex. 'pie' type data selected area)
18
18
* @property {boolean} [interaction.inputType.mouse=true] enable or disable mouse interaction
19
19
* @property {boolean} [interaction.inputType.touch=true] enable or disable touch interaction
20
-
* @property {boolean|number} [interaction.inputType.touch.preventDefault=false] enable or disable to call event.preventDefault on touchstart & touchmove event. It's usually used to prevent document scrolling.
20
+
* @property {boolean|number} [interaction.inputType.touch.preventDefault=false] enable or disable to call event.preventDefault on touchstart & touchmove event. It's usually used to prevent document scrolling.<br>
21
+
* - **NOTE**: When `true` is set, touch events are bound with [`{passive: false}`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#using_passive_listeners) option.
21
22
* @property {boolean} [interaction.onout=true] Enable or disable "onout" event.<br>
22
23
* When is disabled, defocus(hiding tooltip, focused gridline, etc.) event won't work.
0 commit comments