I am trying to align the columns on the left in my chart. By default, they are in the middle.
I can not find anything about this in the API documentation.
Here is the jsFiddle test.
In highchart api, did you learn the function of filling a group? http://www.highcharts.com/ref/#plotOptions-column--groupPadding
plotOptions: { series: { groupPadding: 0 } },
If the columns are too wide, if groupPadding is set to 0, you can still play with pointPadding. http://www.highcharts.com/ref/#plotOptions-column--pointPadding
(If this does not fit your needs, I think I'm a little puzzled because I donβt see the columns of the chart align to the left, and then the big empty space to the right, for a well-designed graph ...)
you can try using the margin option http://www.highcharts.com/ref/#chart--margin
or margin left option http://www.highcharts.com/ref/#chart--marginLeft
or left stop option http://www.highcharts.com/ref/#chart--spacingLeft
Source: https://habr.com/ru/post/906335/More articles:Is there a command to return the owner of a file? - linuxHow to increase the heap size used by the GWT Maven module when IntelliJ βmakesβ it call? - intellij-ideaDeclaring Pointer Syntax in a Function - cHow can I get JAXB2 to emit CamelCase bindings? - javaRuby Logical Operators - Elements in one, but not both arrays - arraysWhat is a good terminator byte for UTF-8 data? - unicodeMy iteration lasts forever. Search for the best way - arraysStruts 2 Session TimeOut - javaHow to add a conditional unique index in PostgreSQL - nullIs ReactiveUI Subscribing? - system.reactiveAll Articles