Bubble axis labels

by kzoon

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>

<div id="container" style="width:750px; height: 400px; margin: 0 auto;"></div>

JavaScript

Highcharts.chart('container', {

  chart: {
    backgroundColor: '#FCFFC5',
    type: "bubble",

  },

  xAxis: [{

    endOnTick: true,
    tickInterval: 50000,
    labels: {
      rotation: 0,
      
      format: '{value}',

      padding: 1,
      style: {
        textOverflow: 'none'
      }
    },


  }],
  series: [{

    data: [{
        name: "Total Prod",
        x: 409713,
        y: 9254,
        z: 187279
      },
      {
        name: "Audio Div",
        x: 221629,
        y: 2034,
        z: 95819
      },
      {
        name: "Video Div",
        x: 171528,
        y: 871,
        z: 83171
      },
      {
        name: "Accessory Div",
        x: 16556,
        y: 6349,
        z: 8289
      }
    ]
  }]

});