Highcharts file service

Please feel free to link to the files from our CDN at code.highcharts.com. The files are hosted from Amazon CloudFront, 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.

Highcharts

Latest stable

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

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.

Highstock

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

Latest stable

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

Specific version

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

Truncated versions

Highmaps

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

Latest stable

The latest stable version of Highmaps 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:

Specific version

You'll find a specific Highmaps 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

Highcharts Gantt

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

Latest stable

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

Specific version

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

Truncated versions

All products - Style mode

Version 7 and above

As of version 7 styled mode is no longer served as a separate set of files. It is instead enabled through an option named chart.styledMode. You can read more about styled mode at Styled mode - styling by CSS.

Version 5 and 6

If you are styling your charts using CSS, load the javascript files from the /js/ directory. For these files, presentational code is removed, and CSS is required to style the chart.

The default Highcharts CSS stylesheet can be downloaded from /css/highcharts.css.

Load Highcharts as 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>

Latest development from GitHub

The file path can be pointed to a specific branch, commit or tag in our GitHub repo. Both Highcharts, Highstock and Highmaps share the same repo, so you'll find highcharts.src.js, highstock.src.js, and highmaps.src.js on the same level.

Branch: "master"

Specific commit: "efed5f14f7"

Tag: "v@patch"

See the available tags on GitHub.