Highcharts file service

Please feel free to link to the files from our CDN at code.highcharts.com. The files are hosted from Cloudflare, which distributes them to edge locations all over the world for fast access and reliability. Please note we maintain a fair usage policy on bandwidth usage.

Note that when retrieving Highcharts code via our CDN, you automatically access the most up-to-date version of our software. To qualify for this benefit, you must maintain an active Highcharts Advantage plan. If you're uncertain about the specific Highcharts version covered by your license, please refer to your License Statement provided at the time of purchase. Alternatively, you can reach out to our sales team at [email protected], and we will gladly verify the information for you.

Table of contents
Highcharts Core
Highcharts Stock
Highcharts Maps
Highcharts Gantt
Highcharts Dashboards
Styled mode
ECMAScript modules

We recommend loading a specific version of the library. This ensures that the version you are loading remains compatible with both your configurations and your license.

Highcharts Core

There are many ways to use Highcharts, and you can choose the one that works best with your project. For the details please check the installation documentation.

Specific version

You'll find a specific Highcharts version by appending the version number to the root level:

Truncated versions

By truncating the version number you'll be able to load the latest stable release within that major version number. For example, @minor points to the latest stable @minor.x, but when @next-minor.x or @next-major.x.x is released, you will still load the latest release of @minor.

Latest stable

The latest stable version of Highcharts is served from the root of code.highcharts.com:

The full list of all available modules can be found on the Highcharts distribution repository.

Highcharts Stock

Highcharts Stock files are available under the /stock subfolder, with the same folder structure as above.

Specific version

You'll find a specific Highcharts version by appending the version number to the /stock folder:

Truncated versions

Latest stable

The latest stable version of Highcharts Stock is served from code.highcharts.com/stock:

Highcharts Maps

Highcharts Maps files are available under the /maps subfolder, with the same folder structure as above. The Highcharts Maps map collection is available under the /mapdata subfolder.

Specific version

You'll find a specific Highcharts Maps version by appending the version number to the /maps folder. To get a specifc version of the map collection, append the version number to the /mapdata folder:

Truncated versions

Latest stable

The latest stable version of Highcharts Maps is served from code.highcharts.com/maps in both standalone and Highcharts plugin form. The map collection is served from code.highcharts.com/mapdata with a folder structure depending on map type and ISO code:

Highcharts Gantt

Highcharts Gantt files are available under the /gantt subfolder, with the same folder structure as above.

Specific version

You'll find a specific Highcharts Gantt version by appending the version number to the /gantt folder:

Truncated versions

Latest stable

The latest stable version of Highcharts Gantt is served from code.highcharts.com/gantt in both standalone and Highcharts plugin form.

Highcharts Dashboards

Highcharts Dashboards files are available under the /dashboards subfolder, with the same folder structure as above.

Specific version

You'll find a specific Highcharts Dashboards version by appending the version number to the /dashboards folder:

Truncated versions

Latest stable

The latest stable version of Highcharts Dashboards is served from code.highcharts.com/dashboards in both standalone and Highcharts plugin form.

Styled mode

You can read more about styled mode at Styled mode - styling by CSS.

For Highcharts Dashboards specific styling see the previous section and for more details see the setup guide for the Dashboards.

Specific version

Truncated versions

Latest stable

ECMAScript modules

Starting with v6.1.0, Highcharts is available on our CDN as ECMAScript modules. You can import ES modules directly in modern browsers without any bundling tools, by using <script type="module"> (demo):

<script type="module">
    import Highcharts from 'https://code.highcharts.com/es-modules/masters/highcharts.src.js';
    Highcharts.chart('container', {
        ...
    });
</script>