Highcharts Demo
author(s):
Torstein Hønsi
by Kondal Durgam
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'
},
title: {
text: 'Highcharts bubbles with radial gradient fill'
},
xAxis: {
type:'category',
gridLineWidth: 1
},
yAxis: {
startOnTick: false,
endOnTick: false
},
series: [ ]
},
function(chart) { // on complete
chart.renderer.text('No Data Available', 200, 200)
.css({
color: '#4572A7',
fontSize: '20px'
})
.add();
}
);