# highcharts-browserify

> Highcharts wrapper for browserify

Latest version **2.0.2** (published 2015-11-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install highcharts-browserify
pnpm add highcharts-browserify
yarn add highcharts-browserify
bun add highcharts-browserify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.2 |
| Published | 2015-11-13 |
| First published | 2014-04-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Author | Ryan Day |
| Maintainers | soldair |
| Keywords | chart, browserify, highcharts, graph |

## Links

- npm: https://www.npmjs.com/package/highcharts-browserify
- Repository: https://github.com/soldair/highcharts-browserify
- Issues: https://github.com/soldair/highcharts-browserify/issues
- npm.io page: https://npm.io/package/highcharts-browserify

## Dependencies (1)

- [highcharts-release](https://npm.io/package/highcharts-release.md) ^4.1.9

## Alternatives

- [d3-force-3d](https://npm.io/package/d3-force-3d.md) — 1.0M weekly downloads
- [ng2-charts](https://npm.io/package/ng2-charts.md) — 486.8K weekly downloads
- [@arcgis/core](https://npm.io/package/@arcgis/core.md) — 257.8K weekly downloads
- [react-sparklines](https://npm.io/package/react-sparklines.md) — 249.3K weekly downloads
- [react-native-gifted-charts](https://npm.io/package/react-native-gifted-charts.md) — 182.3K weekly downloads

## Recent versions

- 2.0.2 (latest) — 2015-11-13
- 2.0.1 — 2015-11-13
- 2.0.0 — 2015-10-20
- 1.0.0 — 2015-10-18
- 0.1.7 — 2015-10-02
- 0.1.5 — 2015-07-17
- 0.1.4-4.0.4 — 2015-04-29
- 0.1.3-4.0.4 — 2014-12-22
- 0.1.2-4.0.4 — 2014-12-22
- 0.1.1-4.0.3 — 2014-08-27
- 0.0.1-3.0.10 — 2014-04-23
- 0.0.0-3.0.10 — 2014-04-22

## README

# highcharts-browserify

Browserify bundle for [Highcharts](http://www.highcharts.com).

## Installation

```shell
$ npm install --save highcharts-browserify
```

## How to use

```js
var $ = require('jquery');
var HighCharts = require('highcharts-browserify');

new Highcharts.Chart({
  chart: {
    renderTo: $('#my-chart')
  },
  // ... more options - see http://api.highcharts.com/highcharts
});
```

## More graph types

Several extra graph types are included as modules.  By requiring the graph type you need, highcharts will be extended to support that graph type.

```js
var $ = require('jquery');
var HighCharts = require('highcharts-browserify/modules/solid-gauge');

new Highcharts.Chart({
  chart: {
    type: 'solidgauge',
    renderTo: $('#my-chart')
  },
  // ... more options - see http://www.highcharts.com/articles/2-news/46-gauges-ranges-and-polar-charts-in-beta
});
```

## Themes

Just `require` the theme you want to use.  Highcharts will automatically be configured to use that theme.  See [the themes documentation](http://www.highcharts.com/docs/chart-design-and-style/themes) for more information.

```js
var $ = require('jquery');
var HighCharts = require('highcharts-browserify');
require('highcharts-browserify/themes/dark-blue');

new Highcharts.Chart({
  chart: {
    renderTo: $('#my-chart')
  },
  // ... more options - see http://api.highcharts.com/highcharts
});
```

## Modules

Similarly to themes, just `require` the highcharts module you want to use. See below exemplary usage for [data module](http://www.highcharts.com/docs/working-with-data/data-module):

```js
var HighCharts = require('highcharts-browserify');
require('highcharts-browserify/modules/data');

var fetchedData = ... //fetch data

new Highcharts.Chart({
  data: fetchedData
  // ... more options - see http://api.highcharts.com/highcharts
});
```

## Collaborators

highcharts-browserify is only possible due to the excellent work of the following collaborators:

 * [smh](https://github.com/smh)
 * [soldair](https://github.com/soldair)
 * [martinlindhe](https://github.com/martinlindhe)
 * [KenanY](https://github.com/KenanY)
 * [achingbrain](https://github.com/achingbrain)

---
_Source: https://npm.io/package/highcharts-browserify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
