Area spline range
(async () => { // Notice that the dataset has missing data // Data taken from https://seklima.met.no/ const data = await fetch( 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@d2270f7c/samples/data/temp-range.json' ).then(response => response.json()); Highcharts.stockChart('container', { chart: { type: 'areasplinerange' }, rangeSelector: { selected: 2 }, title: { text: 'Temperature variation by day' }, tooltip: { valueSuffix: '°C' }, series: [{ name: 'Temperatures', data: data }] }); })();
StockChart types
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