如何在角度类型js中隐藏图表linechart选项。我想隐藏图表顶部的指定选项。
https://www.chartjs.org/samples/latest/charts/doughnut.html
我厌倦了这个问题。我想隐藏图表顶部的选项(使用角度(。
如果你想隐藏标签,你可以从一开始就关闭它们。
在ts文件中,您需要使用@VieChild来连接到您的图表。
@ViewChild(BaseChartDirective, {static: false}) chart: BaseChartDirective;
应该在html:中调用您的图表
<canvas baseChart #baseChart..
要打开标签,您可以在ngAfterViewInit:中使用它
this.chart.chart.getDatasetMeta(0).data[0].hidden = true;