score:1

Accepted answer

You can achieve the above by using the colorByPoint option.

        plotOptions: {
            column: {
                pointPadding: 0.2,
                borderWidth: 0,
                colorByPoint: true
            }
        },

See fiddle here.

enter image description here


Related Query