[Chartjs]-Series Details Not Showing in Angular Chart with Charts.js

21👍

You Should set legends display true . that will solve your problem

$scope.labels = ["January", "February", "March", "April", "May", "June", "July"];
$scope.series = ['Series A', 'Series B'];
$scope.options = { legend: { display: true } }; // missing 

$scope.data = [
   [65, 59, 80, 81, 56, 55, 40],
   [28, 48, 40, 19, 86, 27, 90]
];

Hope this solve your problem . Thanks

Leave a comment