# Highcharts Grid Lite

Highcharts Grid Lite is the free 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 Lite is perfect for creating responsive, interactive tables for simple use cases.

- 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](http://www.highcharts.com/download)
- License: [wwww.highcharts.com/license-grid-lite](https://shop.highcharts.com/license-grid-lite)
- 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)
- Shop: [shop.highcharts.com](https://shop.highcharts.com/)

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

## Installation

If you simply want to include Highcharts Grid Lite into a project, use the [distribution package](https://www.npmjs.com/package/@highcharts/grid-lite), 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 Lite** via NPM:

```bash
npm install @highcharts/grid-lite
```

Then, import the package into your project:

```js
import * as Grid from "@highcharts/grid-lite";
import "@highcharts/grid-lite/css/grid-lite.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-lite) for details.

```HTML
<script src="https://cdn.jsdelivr.net/npm/@highcharts/grid-lite/grid-lite.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@highcharts/grid-lite/css/grid-lite.css">
```
