Skip to content

Releases: xieziyu/ngx-echarts

v5.2.2

14 Dec 03:16
Compare
Choose a tag to compare
Release: v5.2.2

v5.2.1

07 Nov 05:07
ab98a2a
Compare
Choose a tag to compare

5.2.1 (2020.11.07)

  • Required resize-observer-polyfill
  • PR #271: Fix autoResize functionality (byThomasBower)
  • Exposed methods: refreshChart() and resize()

v5.1.1

06 Aug 05:42
33ee364
Compare
Choose a tag to compare

5.1.1 (2020.08.06)

  • PR #254: Fix Angular 10 generic ModuleWithProviders depreciation (by olicooper)

v5.1.0

24 Jul 08:10
b5ab51a
Compare
Choose a tag to compare

5.1.0 (2020.07.24)

v5.0.0

19 May 06:55
Compare
Choose a tag to compare

5.0.0 (2020-05-19)

BREAKING CHANGES:

  • NgxEchartsModule provides .forRoot() method to inject echarts core.
  • Due to .forRoot method, we can do custom build without NgxEchartsCoreModule. Just import the echarts core from echarts/src/echarts, and other necessary charts.
  • NgxEchartsCoreModule is removed.
  • [detectEventChanges] is removed.

v4.2.1

14 Jun 10:33
2ea7032
Compare
Choose a tag to compare

4.2.1 (2019-06-17)

New

  • Support ECharts custom build.

v4.1.0

16 Dec 09:41
Compare
Choose a tag to compare

4.1.0 (2018-12-16)

New

  • Perfomance update: echarts events are now lazily bounded, so it won't trigger change dectection unexpectedly. Please refer to PR #154 for more details. Thanks to smnbbrv!
  • Plenty of echarts event are now supported.

Deprecated

  • [detectEventChanges] is now deprecated.

v4.0.1

11 Nov 12:57
Compare
Choose a tag to compare

4.0.1 (2018-11-11)

New

  • Add map events support: (chartMapSelectChanged), (chartMapSelected), (chartMapUnselected). (by amirch1 - PR #147)

v4.0.0

20 Aug 08:17
Compare
Choose a tag to compare

4.0.0 (2018-08-20)

BREAKING CHANGES

  • ES6 import instead of polluting global namespace. issue #123
  • NgxEchartsService is now obsoleted. If you want to use echarts API, please just import it
    import * as echarts from 'echarts';
    /** or */
    import { graphic, registerMap } from 'echarts';
  • No need to configure angular.json any more. But we still need to configure tsconfig.json currently.
  • Import echarts theme files or other extension files in main.ts.

New

  • [detectEventChanges] Use it to avoid unwanted change detections. Note that, if you set it false, chartClick and some other event-emitters become silent.

Changes

  • ECharts instance creating is delayed until view initialized
  • [theme] now detect changes at runtime. Note that, when you change theme at runtime, the chart would be destroyed first and then initialized again.

v4.0.0-beta.0

08 Aug 03:48
e6ca094
Compare
Choose a tag to compare
v4.0.0-beta.0 Pre-release
Pre-release

4.0.0-beta.0 (2018-08-08)

BREAKING CHANGES

  • ES6 import instead of polluting global namespace. issue #123
  • NgxEchartsService is now obsoleted. If you want to use echarts API, please just import it
    import * as echarts from 'echarts';
    /** or */
    import { graphic, registerMap } from 'echarts';
  • No need to configure angular.json any more. But we still need to configure tsconfig.json currently.
  • Import echarts theme files or other extension files in main.ts.