aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components/Chart.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-04-07 10:42:16 -0400
committerbobzel <zzzman@gmail.com>2023-04-07 10:42:16 -0400
commit986c5bdc899954c4609f71405d3334147be721fe (patch)
tree98fb4b67e0438f29e5372e9e35fa0cf8f00798bb /src/client/views/nodes/DataVizBox/components/Chart.scss
parente9633592cdd11df4d4d240dc42c254f60d16b572 (diff)
experimetnal changes to datavizbox to allow brushing data items and better highlighting of selections. Also working on drawing link lines between chart aliases.
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
-rw-r--r--src/client/views/nodes/DataVizBox/components/Chart.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss
index 2d6c5f0f2..c8daf7c90 100644
--- a/src/client/views/nodes/DataVizBox/components/Chart.scss
+++ b/src/client/views/nodes/DataVizBox/components/Chart.scss
@@ -8,8 +8,28 @@
// change the color of the circle element to be red
fill: red;
}
+.focus-selected,
+.selected {
+ // change the color of the circle element to be red
+ fill: lightblue;
+ position: absolute;
+ transform-box: fill-box;
+ scale: 2;
+ transform-origin: center;
+}
+.focus {
+ fill: transparent;
+ outline: black solid 1px;
+ border-radius: 100%;
+}
+.focus-selected {
+ scale: 1;
+ outline: black solid 1px;
+ border-radius: 100%;
+}
.chart-container {
display: flex;
flex-direction: column;
align-items: center;
+ cursor: default;
}