diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-05 22:44:38 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-05 22:44:38 -0400 |
| commit | 99fba6d6e99da0154d40d2e3e87e120d8e6f2810 (patch) | |
| tree | 28002db4cc426ba68da4bc1b837fe21e16b1e27b /src/client/views/nodes/DataVizBox/components/Chart.scss | |
| parent | 9b41da1af16b982ee8ac2fc09f2f8b5d67eac9fb (diff) | |
fixed up dataviz to work again. fixed point selection, tooltips, making and following links
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
| -rw-r--r-- | src/client/views/nodes/DataVizBox/components/Chart.scss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss index 7792a2758..2d6c5f0f2 100644 --- a/src/client/views/nodes/DataVizBox/components/Chart.scss +++ b/src/client/views/nodes/DataVizBox/components/Chart.scss @@ -1,10 +1,15 @@ .tooltip { // make the height width bigger - width: 50px; - height: 50px; + width: fit-content; + height: fit-content; } .highlight { // change the color of the circle element to be red fill: red; } +.chart-container { + display: flex; + flex-direction: column; + align-items: center; +} |
