How to Right aligned xAxis Label in HighChart when we are working with two column series without stacking: 'normal',

99 Views Asked by At

xAxis Label alignment should start from red mark plot..

keeping image for the reference

enter image description here

I was trying with label formatter

 xAxis: {
            categories: [],
            min:0,
            labels: {
                useHTML: true,
                align: 'center',
                allowOverlap: false,
                style: {
                    color: '#000000'
                },
                formatter: function () {
                   return <html><body><div style="position:absolute;right:14px;font-size:small;"><p>${this.value}</p></div></body></html>`;
                 }
            }
        },
    
0

There are 0 best solutions below