3D chart bug reproduced

HTML

<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-3d.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height: 400px"></div>

CSS

#container {
  height: 400px;
  min-width: 310px;
  max-width: 800px;
  margin: 0 auto;
}

JavaScript

$(function () {
  $('#container').highcharts({
    "chart": {
   
    
      "options3d": {
        "enabled": true,
        "alpha": 6,
        "beta": 5,
        "viewDistance": 0,
        "depth": 40,
        "frame": {
          "back": {
            "color": "rgba(255,255,255,0)"
          },
          "side": {
            "color": "rgba(255,255,255,0)"
          },
          "bottom": {
            "color": "rgba(255,255,255,0)"
          }
        }
      },
   
    },
     
    "xAxis": {
      "title": {
        "text": "SmallData",
       
        "margin": 5
      },
      "opposite": false,
      "axisInternalName": "0",
      "labels": {
        "enabled": true,
        "style": {
          "font-size": "0.714rem",
          "font-family": "Lucida Sans Unicode",
          "color": "#000000",
          "font-weight": "normal",
          "font-style": "normal",
          "text-decoration": "none"
        },
        "rotation": 330
      },
      "lineWidth": 1,
      "lineColor": "#000000",
      "categories": ["1.00", "2.00", "3.00", "4.00"],
      "tickmarkPlacement": "on",
      "gridLineWidth": 1,
      "gridLineColor": "#C0C0C0",
      "plotLines": [],
      "plotBands": []
    },
    "yAxis": [{
      "title": {
        "text": "Col_4",
        "style": {
          "font-size": "0.714rem",
          "font-family": "Lucida Sans Unicode",
          "font-weight": "normal",
          "text-decoration": "none",
          "font-style": "normal",
          "color": "#000000",
          "opacity": "1"
        },
        "margin": 5
      },
      "opposite": false,
      "axisInternalName": "0",
      "labels": {
        "enabled": true,
        "style": {
          "font-size": "0.714rem",
          "font-family": "Lucida Sans Unicode",
          "color": "#000000",
          "font-weight": "normal",
          "font-style": "normal",
          "text-decoration": "none"
        },
        "rotation": 0
      },
      "lineWidth": 0,
      "lineColor":...