Chartjs-Angular-chart.js custom color based on chart label values

0👍

Did you try to fill the missing parts with empty string and 0 like

$scope.labels = ["A", "", "C"];
$scope.data = [1, 0, 3];

Leave a comment