|
![]() |
There are two ways to reference highcharts JavaScript files.
1. Online reference
All you have to do is to add the link to Highcharts javascript online script using the following code.
...
<script src="https://code.highcharts.com/highcharts.js"></script>
...
2. Local reference
You can either download Highcharts JavaScript from this link.
Some of the advanced chart types and features in Highcharts are not defined in the main “highcharts.js” file and are available as separate modules. Depending on the chart you create, you may need to add one or several of them to your page. Here is a complete list of the additional modules that are available:
...
<script src="https://code.highcharts.com/modules/data.js"></script>
<script src="https://code.highcharts.com/highcharts-3d.js"></script>
<script src="https://code.highcharts.com/modules/heatmap.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/funnel.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/heatmap.js"></script>
<script src="https://code.highcharts.com/modules/treemap.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.js"></script>
<script src="https://code.highcharts.com/modules/solid-gauge.js"></script>
...