我需要创建一个类似的图表
我需要删除条形图中显示的百分比
这是我的代码
public barChartOptions: ChartOptions = {
responsive: false,
maintainAspectRatio: false,
legend: {
display: false
},
tooltips: {
enabled: false
},
showLines: false,
cutoutPercentage: 70,
};
public barChartType: ChartType = 'doughnut';
public barChartData: ChartDataSets[] = [
{ data: this.randomize() }
];
public doughnutChartColors2: Array<any> = [{
backgroundColor: ['#58dfa7']
}];
在chartjs中,您可以禁用插件(在本例中为标签插件(。
将此添加到选项标签将被禁用:
plugins: {
labels: false
}