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/PieChart.tsx | |
parent | 1bfa61ae441458cdcd860eb39e617417d013f1fa (diff) |
selected data at bottom of graph
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/PieChart.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/PieChart.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/PieChart.tsx b/src/client/views/nodes/DataVizBox/components/PieChart.tsx index cc5cc231b..ca93a2942 100644 --- a/src/client/views/nodes/DataVizBox/components/PieChart.tsx +++ b/src/client/views/nodes/DataVizBox/components/PieChart.tsx @@ -410,6 +410,7 @@ export class PieChart extends React.Component<PieChartProps> { fillWidth /> </div> + <div ref={this._piechartRef} /> {selected != 'none' ? <div className={'selected-data'}> Selected: {selected} @@ -424,7 +425,6 @@ export class PieChart extends React.Component<PieChartProps> { /> </div> : null} - <div ref={this._piechartRef} /> </div> ) : <span className="chart-container"> {'first use table view to select a column to graph'}</span> ); |