diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2024-01-23 13:22:13 -0500 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2024-01-23 13:22:13 -0500 |
commit | aa3c70399ac2b6a337a9c85fb30f57f82ee44063 (patch) | |
tree | c876ccc11c55004b4dd16d926e5c4ddea2c970f0 /src/client/views/nodes/DataVizBox/components/LineChart.tsx | |
parent | 3a235c77d942507838b63372cfa3dc38972bd0a2 (diff) |
data has a title column
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/LineChart.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/LineChart.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/LineChart.tsx b/src/client/views/nodes/DataVizBox/components/LineChart.tsx index 2a9a8b354..f23ab94a2 100644 --- a/src/client/views/nodes/DataVizBox/components/LineChart.tsx +++ b/src/client/views/nodes/DataVizBox/components/LineChart.tsx @@ -28,6 +28,7 @@ export interface LineChartProps { Document: Doc; layoutDoc: Doc; axes: string[]; + titleCol: string; records: { [key: string]: any }[]; width: number; height: number; |