How is the data displayed by Highcharts formatted?

how is the data on the X axis formatted as Y?

$(function () {

 Highcharts.setOptions({
        lang: {
            numericSymbols: ["k" , "M" , "G" , "T" , "P" , "E"],
        },
    }),

 Highcharts.chart("containers", {
     plotOptions: {
                    column:{
                        dataLabels:{
                            enabled:true, // dataLabelstrue
                            style:{
                                color:"-sharpD7DEE9"
                            }
                        }
                    }
      },

     credits:{
            enabled: false
        },
    exporting: {
         enabled: false
    },
    chart: {
        type: "column",
        alignTicks: false
    },
    title: {
        text: ""
    },
    yAxis: {
            labels: {

            },
            title: {
                text: ""
            }
        },
        legend: {
            enabled: false
        },

     xAxis: {
         lables:{
           formatter: function() {

            }
         },
        categories:
            ["tests"]
    },

    series: [{
        showInLegend: false,
        name: "",
        data: [
            [11111111111]
        ]
    }],
    responsive: {
        rules: [{
            condition: {
                maxWidth: 500
            },
            // Make the labels less space demanding on mobile
            chartOptions: {
                xAxis: {
                    labels: {
                        formatter: function () {
                            return this.value.replace("", "")
                        }
                    }
                },
                yAxis: {
                    labels: {
                        align: "left",
                        x: 0,
                        y: -2
                    },
                    title: {
                        text: ""
                    }
                }
            }
        }]
    }
});
 });
function setSize(width) {
    chart.setSize(width, 300);
}
Mar.07,2022

you have configured global and separately configured xAxis , so you cannot apply global configuration

Online code editors such as
  codesandbox  first write a  demo  to recreate it, and then send out the problems and links, so that when others want to help you solve the problem, they don't have to put on shelves. 

when others see a problem, it takes five or six minutes to build a shelf and a minute to solve the problem. Or you put up the shelf and it takes someone else a minute to solve the problem. In both cases, do you think that in the latter case, others are more likely to help you solve the problem?

Menu