score:3

Accepted answer

In the highcharts api, have you examined the group padding feature? http://www.highcharts.com/ref/#plotOptions-column--groupPadding

plotOptions: {
    series: {
        groupPadding: 0
    }
},

If the columns appear too wide when you set the groupPadding to 0, you can still play with the pointPadding. http://www.highcharts.com/ref/#plotOptions-column--pointPadding

(If that doesn't fit your needs, I guess I'm a bit perplexed, because I don't see how having chart columns aligned to the left, then followed by a big blank space on the right, would make for a well-designed chart...)

score:1

you can trying using the margin option http://www.highcharts.com/ref/#chart--margin

or the margin left option http://www.highcharts.com/ref/#chart--marginLeft

or the spacing left option http://www.highcharts.com/ref/#chart--spacingLeft


Related Query

More Query from same tag