abdoutelb / angular-highcharts

Highcharts directive for Angular

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

angular-highcharts

NPM version NPM downloads Build Status

This is a Highcharts directive for Angular.

Requirements

{
  "angular": ">=6.0.0",
  "highcharts": ">=6.0.0"
}

Installation

yarn

# install angular-highcharts and highcharts
yarn add angular-highcharts highcharts

# install highcharts typings
yarn add --dev @types/highcharts

npm

# install angular-highcharts and highcharts
npm i --save angular-highcharts highcharts

# install highcharts typings
npm i --save-dev @types/highcharts

angular4 & angular5 support

For angular4 and angular5 you have to install a specific version of angular-highcharts.

# angular4
yarn add angular-highcharts@4
npm i angular-highcharts@4

# angular5
yarn add angular-highcharts@5
npm i angular-highcharts@5

Usage Example

// app.module.ts
import { ChartModule } from 'angular-highcharts';

@NgModule({
  imports: [
    ChartModule // add ChartModule to your imports
  ]
})
export class AppModule {}
// chart.component.ts
import { Chart } from 'angular-highcharts';

@Component({
  template: `
    <button (click)="add()">Add Point!</button>
    <div [chart]="chart"></div>
  `
})
export class ChartComponent {
  chart = new Chart({
    chart: {
      type: 'line'
    },
    title: {
      text: 'Linechart'
    },
    credits: {
      enabled: false
    },
    series: [
      {
        name: 'Line 1',
        data: [1, 2, 3]
      }
    ]
  });

  // add point to chart serie
  add() {
    this.chart.addPoint(Math.floor(Math.random() * 10));
  }
}

API Docs

Chart

The Chart object.

Type: class

Constructor

new Chart(options: Options)

Properties

ref: Highcharts.ChartObject;

Deprecated. Please use ref$.

ref$: Observeable<Highcharts.ChartObject>

Observeable that emits a HighchartsChartObject - Offical Chart API Docs

Methods

addPoint(point: Point, [serieIndex: number = 0]): void

Adds a point to a serie

removePoint(pointIndex: number, [serieIndex: number = 0], [redraw: boolean = true], [shift: boolean = false]): void

Removes a point from a serie

addSerie(serie: ChartSerie): void

Adds a serie to the chart

removeSerie(serieIndex: number): void

Remove serie to the chart

StockChart

The Chart object.

Type: class

Constructor

new StockChart(options);

Properties

ref: Highstock.ChartObject;

Deprecated. Please use ref$.

ref$: Observeable<Highstock.ChartObject>

Observeable that emits a HighstockChartObject

MapChart

The Chart object.

Type: class

Constructor

new MapChart(options);

Properties

ref;

Deprecated. Please use ref$.

ref$;

Observeable that emits a HighmapsChartObject

Using Highcharts modules

To use Highcharts modules you have to import them and provide them in a factory (required for aot). You can find the list of available modules in the highcharts folder ls -la node_modules/highcharts/modules.

Hint: Highcharts-more is a exception, you find this module in the root folder. Don't forget to use the modules with the .src suffix, minimized highcharts modules are not importable.

Example

// app.module.ts
import { ChartModule, HIGHCHARTS_MODULES } from 'angular-highcharts';
import * as more from 'highcharts/highcharts-more.src';
import * as exporting from 'highcharts/modules/exporting.src';

@NgModule({
  providers: [
    { provide: HIGHCHARTS_MODULES, useFactory: () => [ more, exporting ] } // add as factory to your providers
  ]
})
export class AppModule { }

Highstock & Highmaps support

Highstock

For Highstock support load the following module

// app.module.ts
import * as highstock from 'highcharts/modules/stock.src';

@NgModule({
  providers: [
    { provide: HIGHCHARTS_MODULES, useFactory: () => [ highstock ]) }
...
// chart.component.ts
import { StockChart } from 'angular-highcharts';

@Component({
  template: `
    <div [chart]="stockChart"></div>
  `
})
export class ChartComponent {
  stockChart = new StockChart({ options });
}

Example Demo

Highmaps

For Highmaps support load the following module

// app.module.ts
import * as highmaps from 'highcharts/modules/map.src';

@NgModule({
  providers: [
    { provide: HIGHCHARTS_MODULES, useFactory: () => [ highmaps ]) }
...
// chart.component.ts
import { MapChart } from 'angular-highcharts';

@Component({
  template: `
    <div [chart]="mapChart"></div>
  `
})
export class ChartComponent {
  mapChart = new MapChart({ options });
}

Offical Highcharts NPM Docs: http://www.highcharts.com/docs/getting-started/install-from-npm

Troubleshooting

If you expiring typing errors while you build/serve your angular app the following could be helpful:

// override options type with <any>
chart = new Chart(<any>{ options });

This is very useful when using gauge chart type.

Demo

License

MIT © Felix Itzenplitz

About

Highcharts directive for Angular

License:MIT License


Languages

Language:TypeScript 88.2%Language:Shell 11.8%