[Chartjs]-Change label color on pie-chart of ng2-charts/charts.js

2👍

Are you looking for this ?Demo

 legend: {
  display: true,
  labels: {
    fontColor: 'red'
  }
},tooltips :{
  backgroundColor:'white',
  callbacks:{
    labelTextColor: function(tooltipItem, chart) { 
       return "black";     
    },

  }
}

Leave a comment