aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components/PieChart.tsx
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2023-08-10 13:21:10 -0400
committersrichman333 <sarah_n_richman@brown.edu>2023-08-10 13:21:10 -0400
commit5a1bf41682f641967304c8a7fa7df9b6b343b7b2 (patch)
treec19497bc2b68e447245b36e7b5ce98c72115607b /src/client/views/nodes/DataVizBox/components/PieChart.tsx
parenta89ba9afe33d973c50c0a66aec73db1e22367913 (diff)
changing selected slice/bar color w different data types bug fix
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/PieChart.tsx')
-rw-r--r--src/client/views/nodes/DataVizBox/components/PieChart.tsx2
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 de725209d..03c9efdd1 100644
--- a/src/client/views/nodes/DataVizBox/components/PieChart.tsx
+++ b/src/client/views/nodes/DataVizBox/components/PieChart.tsx
@@ -266,7 +266,7 @@ export class PieChart extends React.Component<PieChartProps> {
}
var sliceColor;
if (dataPoint){
- var accessByName = descriptionField? dataPoint[descriptionField] : dataPoint[percentField];
+ var accessByName = dataPoint[this.props.axes[0]].replace(/\$/g, '').replace(/\%/g, '').replace(/\</g, '');
var sliceColors = StrListCast(this.props.layoutDoc.pieSliceColors).map(each => each.split('::'));
sliceColors.map(each => {if (each[0]==StrCast(accessByName)) sliceColor = each[1]});
}