Skip to content

Releases: gevgeny/angular2-highcharts

v0.5.5

12 Feb 19:57
Compare
Choose a tag to compare

remove unnecessary typings

v0.5.4

12 Feb 19:54
Compare
Choose a tag to compare
  • 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

31 Oct 08:59
Compare
Choose a tag to compare
  • get rid of Highcharts static wrapper
  • migrate to Highcharts5
  • add Webpack and SystemJS integration examples

v0.3.5

29 Oct 11:02
Compare
Choose a tag to compare

update to new typings

v0.3.4

03 Oct 20:11
Compare
Choose a tag to compare

Readded highcharts

v0.3.3

01 Oct 07:29
Compare
Choose a tag to compare

Fixed typings problems

v0.3.2

28 Sep 07:30
Compare
Choose a tag to compare
v0.3.2

v0.3.1

26 Sep 21:25
Compare
Choose a tag to compare

Update documentation and live examples

v0.3.0

25 Sep 15:40
Compare
Choose a tag to compare

Support Angular 2.0 Final Release

v0.2.1

21 Aug 06:53
Compare
Choose a tag to compare

Add axes events