Angular2 Highcharts Versions Save

:bar_chart: :chart_with_upwards_trend: Highcharts for your Angular project

v0.5.5

7 years ago

remove unnecessary typings

v0.5.4

7 years ago
  • Add angular-cli support
  • Bump dependencies versions
  • Update documentation and live demos

Breaking Changes

  • Now main highcharts module (highchart, highstock or highmaps) should be specified manually during app init. It helped to get rid of config changes in webpack environment.
@NgModule({
    imports: [
      BrowserModule, 
-     ChartModule
+     ChartModule.forRoot(require('highcharts'))
    ],
    declarations: [App],
    bootstrap: [App]
})
  • Highcharts Modules adding was simplified and also moved to app init.
- const Highcharts = require('highcharts');
- const Highcharts-3d = require('highcharts/highcharts-3d');
- Highcharts-3d (Highcharts)

@NgModule({
    imports: [
      BrowserModule, 
-     ChartModule
+     ChartModule.forRoot(
+       require('highcharts'),
+       require('highcharts/highcharts-3d')
+     )
    ],
    declarations: [App],
    bootstrap: [App]
})

v0.4.1

7 years ago
  • get rid of Highcharts static wrapper
  • migrate to Highcharts5
  • add Webpack and SystemJS integration examples

v0.3.5

7 years ago

update to new typings

v0.3.4

7 years ago

Readded highcharts

v0.3.3

7 years ago

Fixed typings problems

v0.3.2

7 years ago

v0.3.1

7 years ago

Update documentation and live examples

v0.3.0

7 years ago

Support Angular 2.0 Final Release

0.2.1

7 years ago

Add axes events