diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2023-08-07 13:30:40 -0400 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2023-08-07 13:30:40 -0400 |
commit | 85f91733a21c7b41829eb9280ce33e90783c926d (patch) | |
tree | 867a51a683b04dc15c00b77aeb63ccd2ff5c4639 /src/client/views/nodes/DataVizBox/components/Histogram.tsx | |
parent | 1bfa61ae441458cdcd860eb39e617417d013f1fa (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.tsx | 2 |
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> ); |