Light/dark theme detection
Highcharts.setOptions({ chart: { styledMode: true } }); const data = [ ['Food', 'Vitamin A'], ['Beef Liver', 6421], ['Lamb Liver', 2122], ['Cod Liver Oil', 1350], ['Mackerel', 388], ['Tuna', 214] ]; Dashboards.board('container', { dataPool: { connectors: [{ id: 'sample', type: 'JSON', options: { data } }] }, gui: { layouts: [{ id: 'layout-1', rows: [{ cells: [{ id: 'dashboard-col-0' }, { id: 'dashboard-col-1' }] }] }] }, components: [{ renderTo: 'dashboard-col-0', connector: { id: 'sample' }, type: 'Highcharts', sync: { highlight: true }, chartOptions: { xAxis: { type: 'category' }, yAxis: { title: '' }, credits: { enabled: false }, title: { text: 'Vitamin A Content in Various Foods', align: 'left' }, accessibility: { typeDescription: 'Packed bubble chart with 5 points.', description: `The chart displays points in the form of different-sized bubbles, representing types of food, the size of which corresponds to their vitamin A content.`, point: { descriptionFormat: `Vitamin A content in {name}: {value} micrograms` } }, legend: { enabled: false }, chart: { animation: false, type: 'packedbubble' }, tooltip: { stickOnContact: true }, plotOptions: { series: { colorByPoint: true, maxSize: '100%', minSize: '40%', dataLabels: { enabled: true, format: '{key}', style: { textOuline: '1px' } }, tooltip: { headerFormat: '{point.key}:', pointFormat: ' {point.y} μg' } } } } }, { renderTo: 'dashboard-col-1', type: 'DataGrid', connector: { id: 'sample' }, className: 'datagrid', sync: { highlight: true }, dataGridOptions: { credits: { enabled: false }, columns: { id: 'Vitamin A', header: { format: '{id} μg' } } } }] }, true); [...document.querySelectorAll('input[name="color-mode"]')] .forEach(input => { input.addEventListener('click', e => { document.getElementById('container').className = e.target.value === 'none' ? '' : `highcharts-${e.target.value}`; }); });
DashboardsBasic
Install with NPM
The official Highcharts Dashboards NPM package comes with support for CommonJS. Read more about how to install Highcharts Dashboards with NPM.
npm install @highcharts/dashboards
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