Skip to content

Releases: gevgeny/angular2-highcharts

v0.5.5

Choose a tag to compare

@gevgeny gevgeny released this 12 Feb 19:57

remove unnecessary typings

v0.5.4

Choose a tag to compare

@gevgeny gevgeny released this 12 Feb 19:54
  • 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

Choose a tag to compare

@gevgeny gevgeny released this 31 Oct 08:59
  • get rid of Highcharts static wrapper
  • migrate to Highcharts5
  • add Webpack and SystemJS integration examples

v0.3.5

Choose a tag to compare

@gevgeny gevgeny released this 29 Oct 11:02

update to new typings

v0.3.4

Choose a tag to compare

@gevgeny gevgeny released this 03 Oct 20:11

Readded highcharts

v0.3.3

Choose a tag to compare

@gevgeny gevgeny released this 01 Oct 07:29

Fixed typings problems

v0.3.2

Choose a tag to compare

@gevgeny gevgeny released this 28 Sep 07:30
v0.3.2

v0.3.1

Choose a tag to compare

@gevgeny gevgeny released this 26 Sep 21:25

Update documentation and live examples

v0.3.0

Choose a tag to compare

@gevgeny gevgeny released this 25 Sep 15:40

Support Angular 2.0 Final Release

v0.2.1

Choose a tag to compare

@gevgeny gevgeny released this 21 Aug 06:53

Add axes events