Bubble named points

by kzoon

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="height: 600px; width: 600px; margin: 0 auto"></div>

JavaScript

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

        chart: {
            type: 'bubble'
        },
      yAxis: {
	        endOnTick: false,
	        max: 100
	    },
 

    series: [{

           data: [
                {name:'point 1',
                 x:5,
                 y:90,
                 z:10
                },
                      
                {name:'point 2',
                 x:55,
                 y:50,
                 z:100
                },   
                {name:'point 3',
                 x:25,
                 y:75,
                 z:500
                }
            ]
    }]

    });

});