I am looking to be able to modify the left padding?
But it does not work in style.
I am looking to do:

And here I am:

Here is the code:
Code: Select all
plotOptions: {
column: {
pointPadding: -0.2,
borderWidth: 0,
stacking: 'normal',
dataLabels: {
enabled: true,
color: 'white',
verticalAlign: 'bottom',
backgroundColor: 'rgba(0,0,0,0.3)',
format: '{y} %',
padding: 5,
shadow: false,
useHTML: true,
style: {
fontSize: '14px',
fontFamily: 'proxima-nova,helvetica,arial,sans-seri',
fontWeight: 'bold',
paddingLeft: '100px',
paddingRight: '100px',
paddingTop: '100px',
paddingBottom: '100px',
textOverflow: 'none',
whiteSpace: 'nowrap'
},
y: 5
}
},