Skip to content

Commit 62af0e8

Browse files
70: support kineticScroll and trackingMode
1 parent e71067e commit 62af0e8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/package/components/chart.svelte

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
export let handleScroll: $$PROPS['handleScroll'] = undefined;
4141
/** Structure that describes scaling behavior or boolean flag that disables/enables all kinds of scales */
4242
export let handleScale: $$PROPS['handleScale'] = undefined;
43+
/** Kinetic scroll options */
44+
export let kineticScroll: $$PROPS['kineticScroll'] = undefined;
45+
export let trackingMode: $$PROPS['trackingMode'] = undefined;
4346
4447
export let ref: $$PROPS['ref'] = undefined;
4548
@@ -58,6 +61,8 @@
5861
localization,
5962
handleScroll,
6063
handleScale,
64+
kineticScroll,
65+
trackingMode,
6166
};
6267
6368
let reference: IChartApi | null = null;

0 commit comments

Comments
 (0)