我遵循了 angular-chart.js 文档,并创建了一个图表,但无法用它呈现图例。我不明白为什么它不起作用。
文档: http: //jtblin.github.io/angular-chart.js/
类似的 SO 问题:How to color legend in angular-chart.js
<div class="panel-body" ng-controller="CircleCtrl" style="display: block;">
<div class="chart-container" style="width:400px; height:200px;">
<canvas id="doughnut"
class="chart chart-doughnut"
chart-data="data"
chart-labels="labels"
chart-colours="colours"
chart-legend="true">
</canvas>
</div>
</div>
我还尝试在控制器中为图例定义一个数组,
$scope.legend = ["complete", "incomplete"]
根据另一个 SO 问题中接受的答案,chart-legend="true"
应该足以使其工作。
有没有人有这个库的经验并且知道如何解决这个问题?