Scatter with turboThreshold

Scatter with turboThreshold

by linhpham84

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container"></div>

CSS

#container {
  min-width: 300px;
  max-width: 800px;
  height: 300px;
  margin: 1em auto;
}

JavaScript

Highcharts.chart('container', { 

  "chart":{ 

     "zoomType":"xy" 

  }, 

  "legend":{ 

     "enabled":true 

  } ,
  "credits": {enabled: false},
  plotOptions:{
    "scatter": {
        "marker": {
            "radius": 5,
            "states": {
                "hover": {
                    "enabled": true,
                    "lineColor": "rgb(100,100,100)"
                }
            },
            "symbol": "circle"
        },
   
        "turboThreshold": 100
    
    }
},
series: [
{
    "type": "scatter",
    "tooltip": {
        "headerFormat": "<b>{series.name}</b><br>",
        "pointFormat": "Material Number: {point.name}<br>Revenue: {point.x:,.0f}  <br>Margin %: {point.y:,.2f} %"
    },
    "data": [
        {
            "name": "LIECLUNIT - ECL Unit",
            "x": 4529067,
            "y": 63.68
        },
        {
            "name": "LIEVUNIT - EV Unit",
            "x": 1728537,
            "y": 49.52
        },
        {
            "name": "LICLASSICUNIT - Classic Unit",
            "x": 1276928,
            "y": 72.79
        },
        {
            "name": "LISSERIESUNIT - S-Series Unit",
            "x": 791504,
            "y": 50.06
        },
        {
            "name": "LIMBIUNIT - MBI Unit",
            "x": 462541,
            "y": 67.21
        },
        {
            "name": "LIISERIESUNIT - iSeries Unit",
            "x": 308645,
            "y": 32.69
        },
        {
            "name": "LISRUNIT - SR Unit",
            "x": 117047,
            "y": 82.03
        },
        {
            "name": "LIMBEUNIT - MBE Unit",
            "x": 91301,
            "y": 47.22
        },
        {
            "name": "LISSIUNIT - SSI Unit",
            "x": 82232,
            "y": 88.35
        },
        {
            "name": "873856PSP - GENERAL PURPOSE GP2U07N",
            "x": 70410,
            "y": 51.77
        },
        {
            "name": "LIS45UNIT - S45 Unit",
            "x": 61887,
            "y":...