Highcharts Demo

author(s): Torstein Hønsi

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>

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

JavaScript

Highcharts.chart('container', {

    chart: {
        type: 'bubble',
        plotBorderWidth: 1,
        zoomType: 'xy'
    },
		series: {
      data: [{
		}]
    },
    title: {
        text: 'No Date Availavle'
    }
   

}).renderer.image('https://www.highcharts.com/samples/graphics/sun.png', 100, 100, 30, 30)
    .add();