私はangular-chart.jsを使用してアプリケーションにグラフを描画しています。しかし、私は問題に直面しています。グラフの凡例にはラベルの代わりにが定義されていませんが表示されています。角度チャートに凡例が定義されていない
マイJSコード:
$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
];
マークアップがです:
<canvas id="bar" class="chart chart-bar" chart-labels="labels_std" chart-data="data_std" chart-colors="colors" chart-options="options"></canvas>
しかし結果はこれです:
問題がどこにある作業例を追加することができます。また、既存のコードの '$ scope.series'はどこにありますか? –
私はシリーズを追加しましたが、うまくいきませんでした。 –
http://jtblin.github.io/angular-chart.js/を参照してください。 –