问题陈述:
我试图水平制作ng2-charts
的条形图scrollable
,因为我将从API接收不受限制的数据。 如果x轴上的数据值超过了某些限制,则x轴上的标签开始重叠,并且我不想跳过任何标签,因此,我想将图表水平scrollable
。
答案 0 :(得分:1)
您可以使用内联样式。
<div style="overflow:scroll;">
<div class="chart-wrapper" style="height:300px">
<canvas baseChart width="3" height="1"
[datasets]="barChartData"
[labels]="barChartLabels"
[options]="barChartOptions"
[colors] = "[barChartColors]"
[legend]="'true'"
[chartType]="'bar'"></canvas>
</div>
</div>