0

is there a way to remove the unnecessary line from the pie in this case? im using chartnew.js

enter image description here

cssyphus
  • 37,875
  • 18
  • 96
  • 111
user2587454
  • 903
  • 1
  • 19
  • 44

1 Answers1

0

Just set the segmentShowStroke option to false, like so

new Chart(document.getElementById("myChart").getContext("2d")).Pie(data, {
    segmentShowStroke: false
});

enter image description here

potatopeelings
  • 40,709
  • 7
  • 95
  • 119