I'm using angular-chart.js to draw charts in my application. But i am facing a problem. Chart legend is showing undefined instead of labels.
My js code:
$scope.labels_std = ['Total Students', 'Submitted fee', 'Has to submit'];
$scope.options = {legend: {display: true, position: 'bottom'}};
$scope.colors = ['#4D5360', '#949FB1', '#97BBCD'];
$scope.data_std = [
$scope.allCount.students,
$scope.allCount.fees,
$scope.allCount.students - $scope.allCount.fees
];
Markup is:
<canvas id="bar" class="chart chart-bar" chart-labels="labels_std" chart-data="data_std" chart-colors="colors" chart-options="options"></canvas>
But the result is this:
It's showing undefined
because you haven't defined the label
property for your datasets.
You need to set label
property inside the $scope.datasetOverride
model for each of your datasets. also, add the directive for it in your view markup.
ᴡᴏʀᴋɪɴɢ ᴇxᴀᴍᴘʟᴇ
var app = angular.module('app', ['chart.js']);
app.controller("BarCtrl", function($scope) {
$scope.labels = ['Total Students', 'Submitted fee', 'Has to submit'];
$scope.colors = ['#4D5360', '#949FB1', '#97BBCD'];
$scope.std = 65, $scope.fee = 59, $scope.nfee = 80;
$scope.data = [
[$scope.std, $scope.fee, $scope.nfee],
[$scope.std, $scope.fee, $scope.nfee],
[$scope.std, $scope.fee, $scope.nfee]
];
$scope.options = {
legend: {
display: true
}
}
$scope.datasetOverride = [{
label: 'My First Dataset'
}, {
label: 'My Second Dataset'
}, {
label: 'My Third Dataset'
}];
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script>
<script src="https://cdn.jsdelivr.net/angular.chartjs/latest/angular-chart.min.js"></script>
<div ng-app="app" ng-controller="BarCtrl">
<canvas id="bar" class="chart chart-bar" chart-data="data" chart-colors="colors" chart-labels="labels" chart-series="series" chart-options="options" chart-dataset-override="datasetOverride"></canvas>
</div>