Scatter plot
Highcharts.setOptions({ colors: [ 'rgba(5,141,199,0.5)', 'rgba(80,180,50,0.5)', 'rgba(237,86,27,0.5)' ] }); const series = [{ name: 'Basketball', id: 'basketball', marker: { symbol: 'circle' } }, { name: 'Triathlon', id: 'triathlon', marker: { symbol: 'triangle' } }, { name: 'Volleyball', id: 'volleyball', marker: { symbol: 'square' } }]; async function getData() { const response = await fetch( 'https://www.highcharts.com/samples/data/olympic2012.json' ); return response.json(); } getData().then(data => { const getData = sportName => { const temp = []; data.forEach(elm => { if (elm.sport === sportName && elm.weight > 0 && elm.height > 0) { temp.push([elm.height, elm.weight]); } }); return temp; }; series.forEach(s => { s.data = getData(s.id); }); Highcharts.chart('container', { chart: { type: 'scatter', zooming: { type: 'xy' } }, title: { text: 'Olympics athletes by height and weight' }, subtitle: { text: 'Source: <a href="https://www.theguardian.com/sport/datablog/2012/aug/07/olympics-2012-athletes-age-weight-height">The Guardian</a>' }, xAxis: { title: { text: 'Height' }, labels: { format: '{value} m' }, startOnTick: true, endOnTick: true, showLastLabel: true }, yAxis: { title: { text: 'Weight' }, labels: { format: '{value} kg' } }, legend: { enabled: true }, plotOptions: { scatter: { marker: { radius: 2.5, symbol: 'circle', states: { hover: { enabled: true, lineColor: 'rgb(100,100,100)' } } }, states: { hover: { marker: { enabled: false } } }, jitter: { x: 0.005 } } }, tooltip: { pointFormat: 'Height: {point.x} m <br/> Weight: {point.y} kg' }, series }); } );
CoreScatter and bubble charts
Install with NPM
The official Highcharts NPM package comes with support for CommonJS and contains Highcharts, and its Stock, Maps and Gantt packages.
npm install highcharts --save
See more installation optionsDownload our library
The zip archive contains Javascript files and examples. Unzip the zip package and open index.html in your browser to see the examples.
DownloadBuy a license
You can download and try out all Highcharts products for free. Once your project/product is ready for launch, purchase a commercial license.
See License Pricing