Update options after render
const chart = Highcharts.chart('container', { title: { text: 'Unemployment rates in engineering and ICT subjects, 2023' }, subtitle: { text: 'Chart option: Plain | Source: ' + '<a href="https://www.nav.no/no/nav-og-samfunn/statistikk/arbeidssokere-og-stillinger-statistikk/helt-ledige"' + 'target="_blank">NAV</a>' }, colors: [ '#4caefe', '#3fbdf3', '#35c3e8', '#2bc9dc', '#20cfe1', '#16d4e6', '#0dd9db', '#03dfd0', '#00e4c5', '#00e9ba', '#00eeaf', '#23e274' ], xAxis: { categories: [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ] }, series: [{ type: 'column', name: 'Unemployed', borderRadius: 5, colorByPoint: true, data: [ 2396, 2434, 2491, 2602, 2536, 2618, 2928, 2899, 2780, 2853, 2923, 2999 ], showInLegend: false }] }); document.getElementById('plain').addEventListener('click', () => { chart.update({ chart: { inverted: false, polar: false }, subtitle: { text: 'Chart option: Plain | Source: ' + '<a href="https://www.nav.no/no/nav-og-samfunn/statistikk/arbeidssokere-og-stillinger-statistikk/helt-ledige"' + 'target="_blank">NAV</a>' } }); }); document.getElementById('inverted').addEventListener('click', () => { chart.update({ chart: { inverted: true, polar: false }, subtitle: { text: 'Chart option: Inverted | Source: ' + '<a href="https://www.nav.no/no/nav-og-samfunn/statistikk/arbeidssokere-og-stillinger-statistikk/helt-ledige"' + 'target="_blank">NAV</a>' } }); }); document.getElementById('polar').addEventListener('click', () => { chart.update({ chart: { inverted: false, polar: true }, subtitle: { text: 'Chart option: Polar | Source: ' + '<a href="https://www.nav.no/no/nav-og-samfunn/statistikk/arbeidssokere-og-stillinger-statistikk/helt-ledige"' + 'target="_blank">NAV</a>' } }); });
CoreDynamic 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