我有angularjs图表:
<canvas id="line" class="chart chart-line" chart-data="data" chart-series="series" chart-labels="labels" chart-options="options" chart-legend="true">
</canvas>
我希望它在图表顶部显示图例(系列),就像它在图表雷达中的工作方式一样。
我对此具有所有设置,但无法正常工作:
$scope.options = { legend: { display: true } };
如何做到?
答案 0 :(得分:0)
有必要添加到选项名称空间。 像这样:
$scope.options = {
legend: {display: true}
};