Flags marking events
(async () => { // Load the dataset const data = await fetch( 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@f56a420/samples/data/btc-historical.json' ).then(response => response.json()); // Create the chart Highcharts.stockChart('container', { accessibility: { typeDescription: `Stock chart with a line series and a flags series indicating key events.` }, title: { text: 'Bitcoin Historical Price and Halvings' }, xAxis: { overscroll: 2678400000 // 1 month }, rangeSelector: { selected: 3, buttons: [{ type: 'month', count: 3, text: '3m', title: 'View 3 months' }, { type: 'month', count: 6, text: '6m', title: 'View 6 months' }, { type: 'ytd', text: 'YTD', title: 'View year to date' }, { type: 'year', count: 1, text: '1y', title: 'View 1 year' }, { type: 'all', text: 'All', title: 'View all' }] }, series: [{ name: 'Bitcoin Price', color: '#ffbf00', data: data, id: 'dataseries', tooltip: { valueDecimals: 2, valuePrefix: '$' } // the event marker flags }, { type: 'flags', color: '#fb922c', onSeries: 'dataseries', shape: 'squarepin', showInNavigator: true, navigatorOptions: { type: 'flags', onSeries: undefined, data: [{ x: '2016-07-09', title: '2nd' }, { x: '2020-05-11', title: '3rd' }] }, accessibility: { exposeAsGroupOnly: true, description: 'Bitcoin Halving Events' }, data: [{ x: '2016-07-09', title: '2nd Halving', text: 'Reward down: 25 BTC to 12.5 BTC per block' }, { x: '2020-05-11', title: '3rd Halving', text: 'Reward down: 12.5 BTC to 6.25 BTC per block' }] }, { type: 'flags', color: '#fb922c', shape: 'squarepin', showInNavigator: true, navigatorOptions: { type: 'flags', data: [{ x: '2024-04-19', title: '4th' }] }, accessibility: { exposeAsGroupOnly: true, description: 'Bitcoin Halving Events' }, data: [{ x: '2024-04-19', title: '4th Halving', text: 'Reward down: 6.25 BTC to 3.125 BTC per block' }] }] }); })();
StockGeneral
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