我正在使用chart.js,并试图通过确保条形图之间的间隙相同来在条形图中添加滚动条。
<div class="{{chartType === 'devicesByNetwork' ? 'col-10 net' : 'col-12 mn'}}" style="height:auto; margin: 0 auto;" *ngIf="showChart">
<canvas class="deviceDept" *ngIf="chartType === 'devicesByNetwork'" style="margin-top:30px;" height="250px" baseChart
[datasets]="barChartData"
[labels]="barChartLabels"
[options]="barChartOptionsdevicesByNetwork"
[legend]="barChartLegend"
[chartType]="barChartType"
[colors]="myColors"
(chartHover)="chartHovered($event)"
(chartClick)="chartClicked($event)"></canvas>
</div>