在 ng2 中删除 DoughtChart 上的百分比 chart.js
Remove percentage on DoughtChart in ng2 chart.js
I need to create a chart like this
我需要删除图表中栏上显示的百分比
这是我的代码
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
}
I need to create a chart like this
我需要删除图表中栏上显示的百分比
这是我的代码
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
}