diff options
author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-27 23:04:22 -0400 |
---|---|---|
committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-27 23:04:22 -0400 |
commit | c80d0763c87d1965f451bbd7b31d8da8228dc048 (patch) | |
tree | 5a6ae3c7781799b58b63cc63ba3bd1a186c890e7 /src/client/views/nodes/DataVizBox/ChartInterface.ts | |
parent | 50797032a67c6e3920edd8ab38e6453a17674cb8 (diff) |
got basic scroll focus to work
Diffstat (limited to 'src/client/views/nodes/DataVizBox/ChartInterface.ts')
-rw-r--r-- | src/client/views/nodes/DataVizBox/ChartInterface.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/ChartInterface.ts b/src/client/views/nodes/DataVizBox/ChartInterface.ts index 05ef35b95..494242ac5 100644 --- a/src/client/views/nodes/DataVizBox/ChartInterface.ts +++ b/src/client/views/nodes/DataVizBox/ChartInterface.ts @@ -9,6 +9,7 @@ export interface Chart { width: number; // TODO: nda - probably want to get rid of this to keep charts more generic _getAnchor: () => Doc; + setCurrSelected: (x: number, y: number) => void; } export interface ChartProps { |