aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2024-04-16 17:43:06 -0400
committersrichman333 <sarah_n_richman@brown.edu>2024-04-16 17:43:06 -0400
commit17cca384290a98b28c4f4a4d6bc4cf5edaef4573 (patch)
treef677f1cae546eb09c6d7ea90b250cd9ed5b9d189 /src/client/views/nodes/DataVizBox
parentb98f3cb1c0e356c318e4d629e8baa05648c153e2 (diff)
visualize button
Diffstat (limited to 'src/client/views/nodes/DataVizBox')
-rw-r--r--src/client/views/nodes/DataVizBox/DataVizBox.tsx5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
index 19fde7273..dbba9c7f3 100644
--- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx
+++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
@@ -439,12 +439,7 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() im
this._props.addDocument?.(embedding);
embedding._dataViz_axes = new List<string>(axes)
this.layoutDoc.dataViz_selectedRows = new List<number>(this.records.map((rec, i) => i))
-
- console.log(embedding.x);
- console.log(Number(embedding.x));
- console.log(Number(embedding.x) + 100.0)
embedding.x = Number(embedding.x) + 100.0;
- console.log(embedding.x);
return true;
};