scripts property
Scripts to be loaded
Url's of the hightchart js scripts.
Reference: Full Scripts list
or use any CDN hosted script
For android
and ios
platforms, the scripts must be provided
List<String> scripts = [
'https://code.highcharts.com/highcharts.js',
'https://code.highcharts.com/modules/exporting.js',
'https://code.highcharts.com/modules/export-data.js'
];
For web
platform, the scripts must be provided in web/index.html
<head>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
</head>
Implementation
final List<String> scripts;