Skip to content
Open

Dev #106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,27 @@ Go to project page to see this module in action: [http://blacklabel.github.io/gr

* Like any other Highcharts module (e.g. exporting), add `<script>` tag pointing to `grouped-categories.js` below Highcharts script tag.

* For NPM users:
#### NPM

Install the package:

```
npm install highcharts-grouped-categories --save
```

Install the plugin into Highcharts:

```
// Using require
var Highcharts = require('highcharts'),
HighchartsGroupedCategories = require('grouped-categories')(Highcharts);
HighchartsGroupedCategories = require('grouped-categories')(Highcharts);

// ES6
import * as GroupedCategories from 'highcharts-grouped-categories';
GroupedCategories(Highcharts);
```

* For BOWER users:
#### Bower

```
bower install highcharts-grouped-categories
Expand Down
Loading