aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components/Histogram.tsx
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2023-08-07 13:30:40 -0400
committersrichman333 <sarah_n_richman@brown.edu>2023-08-07 13:30:40 -0400
commit85f91733a21c7b41829eb9280ce33e90783c926d (patch)
tree867a51a683b04dc15c00b77aeb63ccd2ff5c4639 /src/client/views/nodes/DataVizBox/components/Histogram.tsx
parent1bfa61ae441458cdcd860eb39e617417d013f1fa (diff)
selected data at bottom of graph
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Histogram.tsx')
-rw-r--r--src/client/views/nodes/DataVizBox/components/Histogram.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Histogram.tsx b/src/client/views/nodes/DataVizBox/components/Histogram.tsx
index 2a47abf32..cb882cf4a 100644
--- a/src/client/views/nodes/DataVizBox/components/Histogram.tsx
+++ b/src/client/views/nodes/DataVizBox/components/Histogram.tsx
@@ -454,6 +454,7 @@ export class Histogram extends React.Component<HistogramProps> {
size={Size.XSMALL}
/>
</div>
+ <div ref={this._histogramRef} />
{selected != 'none' ?
<div className={'selected-data'}>
Selected: {selected}
@@ -477,7 +478,6 @@ export class Histogram extends React.Component<HistogramProps> {
/>
</div>
: null}
- <div ref={this._histogramRef} />
</div>
) : <span className="chart-container"> {'first use table view to select a column to graph'}</span>
);