图表线可以显示像图表雷达这样的图例(例如)吗?
Can a chart-line show a legend like chart-radar (for instance)?
我有 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 } };
怎么做?
有必要添加到选项命名空间。
像这样:
$scope.options = {
legend: {display: true}
};
我有 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 } };
怎么做?
有必要添加到选项命名空间。 像这样:
$scope.options = {
legend: {display: true}
};