Crossfilter
Highcharts.setOptions({ chart: { styledMode: true } }); const navigatorOptions = { xAxis: { labels: { format: '{value}%' }, tickInterval: 10 } }; Dashboards.board('container', { dataPool: { connectors: [{ id: 'Economy', type: 'CSV', options: { csv: document.getElementById('csv').innerHTML, decimalPoint: '.', itemDelimiter: ',' } }] }, editMode: { enabled: true, contextMenu: { enabled: true } }, gui: { layouts: [{ rows: [{ cells: [{ id: 'top-left' }, { id: 'top-middle' }, { id: 'top-right' }] }, { cells: [{ id: 'bottom' }] }] }] }, components: [{ renderTo: 'top-left', type: 'Navigator', connector: { id: 'Economy' }, columnAssignment: { Agriculture: 'y' }, sync: { crossfilter: true }, chartOptions: { title: { text: 'Agriculture' }, navigator: navigatorOptions } }, { renderTo: 'top-middle', type: 'Navigator', connector: { id: 'Economy' }, columnAssignment: { Industry: 'y' }, sync: { crossfilter: true }, chartOptions: { title: { text: 'Industry' }, navigator: navigatorOptions } }, { renderTo: 'top-right', type: 'Navigator', connector: { id: 'Economy' }, columnAssignment: { Services: 'y' }, sync: { crossfilter: true }, chartOptions: { title: { text: 'Services' }, navigator: navigatorOptions } }, { renderTo: 'bottom', type: 'DataGrid', connector: { id: 'Economy' }, dataGridOptions: { credits: { enabled: false }, columns: [{ id: 'Agriculture', cells: { format: '{value:.1f}%' } }, { id: 'Industry', cells: { format: '{value:.1f}%' } }, { id: 'Services', cells: { format: '{value:.1f}%' } }] } }] });
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