# Highcharts Grid Pro

Highcharts Grid Pro is the commercial version of [Highcharts Grid](https://www.highcharts.com/docs/grid/general), from the creators of the [Highcharts](https://github.com/highcharts/highcharts) charting library. Designed to meet modern web standards optimized for high performance in large datasets, Grid Pro is perfect for creating responsive, interactive and editable data tables.

To use Higcharts Grid Pro, you must have a valid license for Highcharts Dashboards or Highcharts Grid Pro. Please refer to [shop.highcharts.com](https://shop.highcharts.com/) for details on licensing.

## Links

* Official website: [highcharts.com](http://www.highcharts.com)
* Product page: [highcharts.com/products/grid](https://www.highcharts.com/products/grid/)
* Demos: [highcharts.com/demo](https://www.highcharts.com/demo#highcharts-grid-demo-general)
* Download: [highcharts.com/download](https://www.highcharts.com/download)
* License: [highcharts.com/license](https://www.highcharts.com/license)
* Shop: [shop.highcharts.com](https://shop.highcharts.com/)
* Documentation: [highcharts.com/docs/grid](https://www.highcharts.com/docs/grid/installation)
* Support: [highcharts.com/support](http://www.highcharts.com/support)
* Issues: [github.com/highcharts](https://github.com/highcharts/highcharts/issues)

Highcharts Grid Pro is a [source available](https://en.wikipedia.org/wiki/Source-available_software) product.

## Installation
If you simply want to include Highcharts Grid Pro into a project, use the [distribution package](https://www.npmjs.com/package/@highcharts/grid-pro), or refer to the [download page](http://www.highcharts.com/download).
For general installation instructions, see [installation documentation](https://highcharts.com/docs/grid/installation)

### Install via NPM
You can install **Grid Pro** via NPM:
```bash
npm install @highcharts/grid-pro
```
Then, import the package into your project:
```js
import * as Grid from "@highcharts/grid-pro";
import "@highcharts/grid-pro/css/grid-pro.css";
```

### Use CDN
Instead of downloading, you can use [jsDelivr](https://www.jsdelivr.com/) CDN to access files directly. See [code.highcharts.com](https://code.highcharts.com/#highcharts-grid-pro) for details.
```HTML
<script src="https://cdn.jsdelivr.net/npm/@highcharts/grid-pro/grid-pro.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@highcharts/grid-pro/css/grid-pro.css">
```