Simple Packed Bubble
by Gert Vaartjes
HTML
<script src="https://github.highcharts.com/master/highcharts.js"></script>
<script src="https://github.highcharts.com/master/highcharts-more.js"></script>
<script src="https://github.highcharts.com/master/modules/exporting.js"></script>
<div id="container"></div>
CSS
#container {
min-width: 320px;
max-width: 800px;
margin: 0 auto;
}
JavaScript
Highcharts.chart('container', {
chart: {
type: 'packedbubble'
},
plotOptions: {
packedbubble: {
minSize: 15,
maxSize: 300
}
},
series: [{
data: [1,75,112,180,20,3000]
}]
}
);