Flag on bubble

HTML

<script src="http://code.highcharts.com/stock/highstock.js"></script>
<!-- <script src="http://code.highcharts.com/highcharts.js"></script> -->
<script src="http://code.highcharts.com/highcharts-more.js"></script>


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

JavaScript

$(function () {
    $('#container').highcharts({
				
        chart: {
            type: 'bubble',
            plotBorderWidth: 1,
            zoomType: 'xy'
        },
				credits : {
        	enabled : false
        }
        title: {
            text: 'Highcharts Bubbles'
        },

        xAxis: {
            gridLineWidth: 1
        },

        yAxis: {
            startOnTick: false,
            endOnTick: false
        },

        plotOptions: {
            bubble: {
                minSize: 3,
                maxSize: 50
            }
        },

        series: [{
         id: 'dataseries',
            data: [
                [9, 81, 63],
                [98, 5, 89],
                [51, 50, 73],
                [41, 22, 14],
                [58, 24, 20],
                [78, 37, 34],
                [55, 56, 53],
                [18, 45, 70],
                [42, 44, 28],
                [3, 52, 59],
                [31, 18, 97],
                [79, 91, 63],
                [93, 23, 23],
                [44, 83, 22]
            ]
        }
                , {
            type: 'flags',
            data: [ [9, 81, 63]],
            onSeries: 'dataseries'

        }
                ]

    });
});