Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gevgeny/angular2-highcharts
:bar_chart: :chart_with_upwards_trend: Highcharts for your Angular project
https://github.com/gevgeny/angular2-highcharts
angular angular2-highcharts chart-component charting-library highcharts highmaps highstock javascript
Last synced: 4 days ago
JSON representation
:bar_chart: :chart_with_upwards_trend: Highcharts for your Angular project
- Host: GitHub
- URL: https://github.com/gevgeny/angular2-highcharts
- Owner: gevgeny
- License: mit
- Created: 2016-02-20T16:11:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T14:08:18.000Z (over 4 years ago)
- Last Synced: 2024-11-21T22:22:44.068Z (21 days ago)
- Topics: angular, angular2-highcharts, chart-component, charting-library, highcharts, highmaps, highstock, javascript
- Language: TypeScript
- Homepage:
- Size: 939 KB
- Stars: 379
- Watchers: 29
- Forks: 113
- Open Issues: 109
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-angular-components - angular2-highcharts - Highcharts for your Angular2 project. (Uncategorized / Uncategorized)
- awesome-angular - angular2-highcharts - Highcharts for your Angular2 project. (Uncategorized / Uncategorized)
- awesome-angular-components - angular2-highcharts - Highcharts for your Angular2 project. (Uncategorized / Uncategorized)
- awesome-angular-components - gevgeny/angular2-highcharts - 📊 📈 Highcharts for your Angular project (UI Components / Charts)
README
# ⚠️ Not supported anymore.
Consider using [the offical Highcharts wrapper for Angular]( https://github.com/highcharts/highcharts-angular)
# angular2-highcharts> Highcharts chart components for Angular apps. 👉 [Live Demo](http://plnkr.co/edit/AJwozFWVR7TkQZnt05dN?p=preview)
[![build](https://travis-ci.org/gevgeny/angular2-highcharts.svg?branch=master)](https://travis-ci.org/gevgeny/angular2-highcharts)
[![npm version](https://badge.fury.io/js/angular2-highcharts.svg)](https://badge.fury.io/js/angular2-highcharts)
[![npm dependencies](https://david-dm.org/gevgeny/angular2-highcharts.svg)](https://david-dm.org/gevgeny/angular2-highcharts)
[![npm downloads](https://img.shields.io/npm/dm/angular2-highcharts.svg)](https://www.npmjs.com/package/angular2-highcharts)## Table of Contents
- [Setting Up](#setting-up)
- [Install angular2-highcharts](#install-angular2-highcharts)
- [Setup App @NgModule](#setup-app-ngmodule)
- [Usage](#usage)
- [Basic Usage](#basic-usage)
- [Setup App Module](#setup-app-module)
- [Create First Chart Component](#create-first-chart-component)
- [Handling Events](#handling-events)
- [Chart Events](#chart-events)
- [Series Events](#series-events)
- [Point Events](#point-events)
- [Axis Events](#axis-events)
- [Dynamic Interaction with Chart Object](#dynamic-interaction-with-chart-object)
- [Highstock](#highstock)
- [Highmaps](#highmaps)
- [Add Highcharts Modules](#add-highcharts-modules)
- [Access to the Highcharts Static API](#access-to-the-highcharts-static-api)
- [More Examples](#more-examples)
- [FAQ](#faq)
- [License](#license)## Setting Up
### Install angular2-highcharts
```
npm install angular2-highcharts --save
```### Setup App @NgModule
```TypeScript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ChartModule } from 'angular2-highcharts';
import { App } from './App';@NgModule({
imports: [
BrowserModule,
ChartModule.forRoot(require('highcharts'))
],
declarations: [App],
bootstrap: [App]
})
export class AppModule {}
```### For angular-cli and other Webpack environments
No any additional setup needed### For SystemJS environment
You should add appropriate mapping to your `systemjs.config.js````js
...
map: {
...
'angular2-highcharts': 'node_modules/angular2-highcharts',
'highcharts': 'node_modules/highcharts',
}
...
packages: {
...
highcharts: {
main: './highcharts.js',
defaultExtension: 'js'
},
'angular2-highcharts': {
main: './index.js',
defaultExtension: 'js'
}
}
```## Usage
### Basic Usage
#### Create First Chart Component
Main charts functionality provided by the `chart` component and its `options` property.```TypeScript
import { Component } from '@angular/core';@Component({
selector: 'simple-chart-example',
template: `
`
})
export class App {
constructor() {
this.options = {
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: Object;
}
```
👉 [Live Demo](http://plnkr.co/edit/IuwjpPB1YQW1T7i4B8SZ?p=preview)### Handling Events
Highcharts itself provides bunch of events, and you still can use them with angular2-higcharts via the `options` property of the `chart` component. But it is not an angular way to handle events like this. So that angular2-higcharts provides `EventEmitter` wrappers for highcharts events. `ChartEvent` is an angular2-higcharts class which simply wraps original Highcharts events (`chartEvent.originalEvent`) and adds event handler context (`chartEvent.context`) since it differs depending on events.#### Chart Events
All the events from the [options.chart.events](http://api.highcharts.com/highcharts#chart.events) are available as output properties of the `chart` component.
```HTML
```
```TypeScript
onChartSelection (e) {
this.from = e.originalEvent.xAxis[0].min.toFixed(2);
this.to = e.originalEvent.xAxis[0].max.toFixed(2);
}
```
👉 [Live Demo](http://plnkr.co/edit/vdgKVJOymMYhiyqZrPma?p=preview)#### Series Events
To use series events the same way you need to add the `series` component as a child of your chart. The only purpose of this auxiliary component is to provide access to [options.plotOptions.series.events](http://api.highcharts.com/highcharts#plotOptions.series.events) API
```HTML
{{serieName}} is hovered
```
```TypeScript
onSeriesMouseOver (e) {
this.serieName = e.context.name;
}
```
👉 [Live Demo](http://plnkr.co/edit/GkaJlk2UJjbTwsPyGXGC?p=preview)
#### Point EventsSimilary you can use the `point` to access to [options.plotOptions.series.point.events](http://api.highcharts.com/highcharts#plotOptions.series.point.events) API.
```HTML
{{point}} is selected
```
👉 [Live Demo](http://plnkr.co/edit/TpKoJ60n4vyIDWxHNUkg?p=preview)
#### Axis EventsSimilary you can use the `xAxis` or `yAxes` to access to [options.xAxis.events](http://api.highcharts.com/highcharts#xAxis.events) or [options.yAxis.events](http://api.highcharts.com/highcharts#yAxis.events) API.
```HTML
{{minX}} - {{maxX}}
{{minY}} - {{maxY}}
```
```TypeScript
onAfterSetExtremesX (e) {
this.minX = e.context.min;
this.maxX = e.context.max;
}
onAfterSetExtremesY (e) {
this.minY = e.context.min;
this.maxY = e.context.max;
}
```
👉 [Live Demo](http://plnkr.co/edit/c4ojcIRVOOwq7xmk9kfx?p=preview)
### Dynamic Interaction with Chart Objectangular2-higcharts provides possibility to interact with native `HighchartsChartObject` chart object.
```TypeScript
@Component({
selector: 'my-app',
directives: [CHART_DIRECTIVES],
template: `
`
})
class AppComponent {
constructor() {
this.options = {
chart: { type: 'spline' },
title: { text : 'dynamic data example'}
series: [{ data: [2,3,5,8,13] }]
};
setInterval(() => this.chart.series[0].addPoint(Math.random() * 10), 1000);
}
chart : Object;
options: Object;
saveInstance(chartInstance) {
this.chart = chartInstance;
}
}
```
👉 [Live Demo](http://plnkr.co/edit/OQSFSKisIIWAH0megy4d?p=preview)### Highstock
``````
Also you need to change your `@NgModule` setup.```diff
...
@NgModule({
...
imports: [
BrowserModule,
ChartModule.forRoot(
- require('highcharts'),
+ require('highcharts/highstock')
)
]
})
```👉 [Live Demo](http://plnkr.co/edit/2xSewTZ9b213vA0ALmFq?p=preview)
### Highmaps
``````
Also you need to change your `@NgModule` setup.```diff
...
@NgModule({
...
imports: [
BrowserModule,
ChartModule.forRoot(
- require('highcharts'),
+ require('highcharts/highmaps')
)
],
})
```👉 [Live Demo](http://plnkr.co/edit/AmDfKwhRhshFn3CPprkk?p=preview)
### Add Highcharts Modules
Any other modules like highcharts-3d, highcharts-exporintg and etc. can be also added in `@NgModule` after main chart module```diff
...
@NgModule({
...
imports: [
BrowserModule,
ChartModule.forRoot(
require('highcharts'),
+ require('highcharts/highchart-3d'),
+ require('highcharts/modules/exporting')
)
],
})
```Check out structure of the `node-modules/highcharts` folder to find necessary module.
👉 [Live Demo](http://plnkr.co/edit/sz6OfccvAetQcBX8KFXy?p=preview)
### Access to the Highcharts Static API
```diff
...
const Highcharts = require('highcharts');Highcharts.setOptions({
colors: ['#50B432']
});@NgModule({
...
imports: [
BrowserModule,
ChartModule.forRoot(
- require('highcharts'),
+ Highcharts
)
],
})
```👉 [Live Demo](http://plnkr.co/edit/uCtPFUExmZFG0diOvbXS?p=preview)
##More Examples
Here are some common charts examples with Webpack integration https://github.com/gevgeny/angular2-highcharts/tree/master/examples/webpack
##FAQ
#### Why don't my series, title, axes and etc redraw after I update initial options ?
Because `angular-highcharts` is just a thin wrapper of the [Highcharts](http:/ /www.highcharts.com/) library and doesn't bind to initial options. I understand that you expect more angular-way behaviour like data binding with appropriate redrawing. But it is barely possible to implement it without redundant complications and performance decrease because almost all options can be dynamic. So my idea was to avoid any additional logic more than just a sugar (like events for series and options). In the other hand Highcharts has great [API](http://api.highcharts.com/highcharts#Chart) for dynamic manipulations with chart and `angular-highcharts` [provides you access](#dynamic-interaction-with-chart-object) to the original chart object.
## License
MIT @ Eugene Gluhotorenko