图表线可以显示图例雷达之类的图例吗?

时间:2018-06-27 09:52:25

标签: angularjs angular-chart

我有angularjs图表:

  <canvas id="line" class="chart chart-line" chart-data="data" chart-series="series" chart-labels="labels" chart-options="options" chart-legend="true">
    </canvas>

我希望它在图表顶部显示图例(系列),就像它在图表雷达中的工作方式一样。 enter image description here

我对此具有所有设置,但无法正常工作:

   $scope.options = { legend: { display: true } };

enter image description here

如何做到?

1 个答案:

答案 0 :(得分:0)

有必要添加到选项名称空间。 像这样:

  $scope.options = {

    legend: {display: true}

 };