Skip to content

highcharts/highcharts

Folders and files

NameName
Last commit message
Last commit date
May 9, 2025
Oct 20, 2023
Apr 7, 2025
May 6, 2025
May 13, 2025
Feb 16, 2024
Mar 7, 2025
Mar 11, 2025
May 13, 2025
Aug 30, 2024
May 13, 2025
May 12, 2025
May 13, 2025
Mar 16, 2018
Apr 11, 2025
Aug 6, 2024
Apr 11, 2024
Jun 4, 2024
Dec 7, 2022
Dec 11, 2024
Oct 3, 2018
May 13, 2025
Apr 7, 2025
Apr 8, 2025
May 23, 2016
Nov 23, 2023
Feb 26, 2025
Jun 19, 2023
Dec 15, 2015
Apr 10, 2025
Apr 10, 2025
Aug 18, 2016
Nov 26, 2024
Nov 26, 2024

Repository files navigation

Highcharts JS is a JavaScript charting library based on SVG and some canvas/WebGL.

Highcharts is a source available product. Please refer to shop.highcharts.com for details on licensing.

Installing and using Highcharts

This is the working repo for Highcharts code. If you simply want to include Highcharts into a project, use the distribution package instead, or read the download page.

Please note that there are several ways to use Highcharts. For general installation instructions, see the docs.

Use our CDN

Instead of downloading, you can use our CDN to access files directly. See code.highcharts.com for details.

<script src="https://code.highcharts.com/highcharts.js"></script>

Install from npm

See npm documentation on how to get started with npm.

npm install --save highcharts

ES6 modules, AMD, CommonJS and others

For other ways to use Highcharts in your projects, please refer to our installation docs.

Create your own custom build of Highcharts

To reduce file size, or combine modules into one file to reduce latency, you may want to create your own build of the Highcharts modules. See Creating custom Highcharts files for more information.

Build and debug

If you want to do modifications to Highcharts or fix issues, you may build your own files. Highcharts uses Gulp as the build system. After npm install in the root folder, run gulp, which will set up a watch task for the JavaScript and CSS files. Now any changes in the files of the /js or /css folders will result in new files being built and saved in the code folder. Other tasks are also available, like gulp lint.

npm install
gulp

Node setup for Apple Mx CPU

When running Node natively on ARM64 MacOS, some Node packages like node-canvas with integrated compiling might fail. Install additional tools to resolve the problem:

  • Homebrew and run brew install pkg-config cairo pango libpng jpeg giflib librsvg pixman

Generate API docs

Run in this highcharts repository the doc generator with npx gulp jsdoc-watch, which also starts a new server with the generated API documentation.