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 e71067e commit 62af0e8Copy full SHA for 62af0e8
src/package/components/chart.svelte
@@ -40,6 +40,9 @@
40
export let handleScroll: $$PROPS['handleScroll'] = undefined;
41
/** Structure that describes scaling behavior or boolean flag that disables/enables all kinds of scales */
42
export let handleScale: $$PROPS['handleScale'] = undefined;
43
+ /** Kinetic scroll options */
44
+ export let kineticScroll: $$PROPS['kineticScroll'] = undefined;
45
+ export let trackingMode: $$PROPS['trackingMode'] = undefined;
46
47
export let ref: $$PROPS['ref'] = undefined;
48
@@ -58,6 +61,8 @@
58
61
localization,
59
62
handleScroll,
60
63
handleScale,
64
+ kineticScroll,
65
+ trackingMode,
66
};
67
68
let reference: IChartApi | null = null;
0 commit comments