我正在使用ng2-chart创建堆叠条形图,ng2-chart是ChartJs的Angular-2版本。
我试图创建条形图与边界-半径中提到的附加图像,但无法找到选项来实现这一点,
请告诉我怎么弄到这个。
我的代码:
public barChartOptions: any = {
scaleShowVerticalLines: false,
responsive: false,
scales: {
xAxes: [{
stacked: true
}],
maxBarThickness: 5,
yAxes: [{
stacked: true
}],
},
barThickness:20,
legend: {
display: true,
position: 'right',
labels: {
fontColor: '#fff'
}
}
};
<canvas baseChart style="height:350px; width:1150px;" [datasets]="barChartData" [labels]="barChartLabels" [options]="barChartOptions" [legend]="barChartLegend"
[colors]="lineChartColors" [chartType]="barChartType">
</canvas>
1条答案
按热度按时间gcxthw6b1#
使用chart.js版本3,您可以使用
borderRadius
属性轻松配置此属性。在编写此答案时,您需要安装ng2-charts
的next
分支,因为它是使用chart.js版本3的第7个候选版本