Chartjs-How to add space between datasets in ng2 doughnut chart

1👍

You can add space between data in doughnut chart by adding borderWidth to dataset

{
  data: this.data,
  borderWidth: 15
}

Leave a comment