Removed 0% on pie chart

This commit is contained in:
Yash Singh 2020-12-10 08:53:04 -08:00 committed by GitHub
parent 7cc2daa696
commit 2b61d131dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export const draw = (txt, id) => {
// Use the centroid method to get the best coordinates.
svg
.selectAll('mySlices')
.data(dataReady)
.data(dataReady.filter(value => value.data.value !== 0))
.enter()
.append('text')
.text(function(d) {