如何限制 AmCharts 4 XYChart 中列的最大值 width/height

How can I limit the maximum width/height of a column in AmCharts 4 XYChart

是否可以限制 XY 图表中列的最大宽度? 我在带有 Typescript 的 Angular 项目中使用 AmCharts4。

下图中:

有没有办法防止第二张图表的单列扩展太多?如果它扩展就好了,但我希望能够以某种方式限制它。

也许是这样的? categoryAxis.maxColumnWidth = 50

我查看了此处的文档:https://www.amcharts.com/docs/v4/tutorials/managing-width-and-spacing-of-column-series/ 但没有看到任何内容。

您可以像这样设置 Column Series 的 maxWidth:

let columnSeries = chart.series.push(new am4charts.ColumnSeries()); 
columnSeries.columns.template.maxWidth = 50