aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components/PieChart.tsx
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2023-07-12 17:28:20 -0400
committersrichman333 <sarah_n_richman@brown.edu>2023-07-12 17:28:20 -0400
commitc5740deae879fffdc46a862b81be2c96ae9366b4 (patch)
tree1348aec6b5e553512fca2c1d98b0d93a78280140 /src/client/views/nodes/DataVizBox/components/PieChart.tsx
parentd20a4b3791c79325c709c42f797452275f2da312 (diff)
graph type option ui + problem fixes
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 c746e6fc1..121e6db3d 100644
--- a/src/client/views/nodes/DataVizBox/components/PieChart.tsx
+++ b/src/client/views/nodes/DataVizBox/components/PieChart.tsx
@@ -272,7 +272,7 @@ export class PieChart extends React.Component<PieChartProps> {
})
.attr("d", arc);
arcs.append("text")
- .attr("transform",function(d){ return "translate("+ (arc.centroid(d)) + ")"; })
+ .attr("transform",function(d){ return "translate("+ (arc.centroid(d as unknown as d3.DefaultArcObject)) + ")"; })
.attr("text-anchor", "middle")
.text(function(d){ return dataSet[data.indexOf(d.value)][percentField] + ' ' + dataSet[data.indexOf(d.value)][descriptionField]})