Search code examples
highchartsalignmentaxiscategories

Align left multi category xaxis highchart


Image 1

enter image description here

Image 2

enter image description here

I want to align left the label but when i do this, the label a stack on other like Image 2.

Please help me


Solution

  • You can also set useHTML as true, use formatter for labels and then use CSS styles.

    http://api.highcharts.com/highcharts#xAxis.labels.useHTML http://api.highcharts.com/highcharts#xAxis.labels.formatter

    EDIT:

    http://jsfiddle.net/2QREQ/3/

    xAxis: {
    
                labels: {
                    //align: 'center'
                    useHTML:true,
                    formatter:function(){
    
                        return '<div class="label">'+this.value+'</div>';
                    }
                }
            },
    

    CSS

    .label {
    text-align:left;
    width:60px;
    

    }