Wterfall invisible series

by kzoon

HTML

<div id="container" style="height: 400px"></div>
<script src="http://github.highcharts.com/highcharts.js"></script>
<script src="http://github.highcharts.com/highcharts-more.js"></script>

JavaScript

$(function () {
    $('#container').highcharts({

         "chart": {
             "type": "waterfall",
             "animation": false,
             "borderRadius": 0,
             "backgroundColor": "rgba(255,255,255,1)",
             "plotBackgroundColor": "rgba(255,255,255,0)",
             "spacingBottom": 10,
             "scAnimateChanges": false
         },
         "title": {
             "text": ""
         },
         "subtitle": {
             "text": ""
         },
         "legend": {
             "backgroundColor": "rgba(255,255,255,0)",
             "borderWidth": 1,
             "itemStyle": {
                 "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                 "fontSize": "11px",
                 "fontWeight": "normal",
                 "color": "rgba(102,102,102,1)"
             }
         },
         "tooltip": {
             "enabled": true,
             "style": {
                 "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                 "fontSize": "11px",
                 "color": "rgba(102,102,102,1)"
             },
             "hideDelay": 10
         },
         "plotOptions": {
             "waterfall": {
                 "animation": false,
                 "shadow": false,
                 "stickyTracking": false,
                 "zIndex": 11,
                 "dataLabels": {
                     "enabled": false,
                     "borderColor": "rgba(0,0,0,1)",
                     "style": {
                         "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                         "fontSize": "11px",
                         "color": "rgba(102,102,102,1)",
                         "lineHeight": "auto"
                     },
                     "scFormat": {
                         "yValue": {
                             "enabled": true
                         }
                     },
                     "scSelection": {}
                 },
                ...