I really couldn't find any documentation about this simple question:
How to change the column width in a Chartkick column chart in RoR?
The aim is to avoid the case in the image below, where the column is too thick in case of a one-column chart
In the documentation it mentions Highchart, so I tried putting some hash parameters according to this example, like this:
<%= column_chart(
@data,
plotOptions: {
series: {
pointWidth: 15
}
}
)
%>
but it's not working.