is there a way to remove the unnecessary line from the pie in this case? im using chartnew.js
Asked
Active
Viewed 588 times
1 Answers
0
Just set the segmentShowStroke
option to false, like so
new Chart(document.getElementById("myChart").getContext("2d")).Pie(data, {
segmentShowStroke: false
});

potatopeelings
- 40,709
- 7
- 95
- 119
-
Thanks. any chance i can keep the circle border? – user2587454 Aug 17 '15 at 12:25
-
There's no direct option. But you could draw a circle around it once the animation is complete. – potatopeelings Aug 17 '15 at 12:44
-
what about remove the border but keep the lines inside? – user2587454 Aug 23 '15 at 06:04
-
pretty much same thing. turn the setting to true and draw a whie border to hide the circle. – potatopeelings Aug 23 '15 at 06:28