- 2024.12.02: v19.0.0
- Feat: Upgrade to angular 19
- BREAKING CHANGES:
- According to issue #443, we cannot import from
echarts/index.js
using Angular 19. Therefore, we need to perform a custom build and import everything required fromecharts/core
,echarts/charts
,echarts/components
, or other specific entry points. provideEcharts
is REMOVED.
- According to issue #443, we cannot import from
- 2024.05.25: v18.0.0
- Feat: Upgrade to angular 18
- 2024.05.16: v17.2.0
- 2023.11.10: v17.1.0 / v16.2.0:
- Feat: Exported standalone
NgxEchartsDirective
,provideEcharts
andprovideEchartsCore
- Feat: Exported standalone
- 2023.11.08: v17.0.1:
- Feat: upgrade to Angular 17
- 2023.10.11: v16.1.0:
- Feat: Add types to
chartXXX
EventEmitters. Support new events such as:'selectchanged'
- Feat: Add types to
- 2023.05.10: v16.0.0:
- Feat: upgrade to Angular 16
- Chore: replaced tslint with eslint.
- 2023.03.27: v15.0.3:
- Fix:
[loading]=true
is not triggered when chart initialized.
- Fix:
- 2023.03.20: v15.0.2:
- Fix: unsubscribe ChangeFilter subscriptions onDestroy.
- 2022.12.01: v15.0.1:
- Feat: Support nullable @Inputs. Issue #378
- 2022.11.23: v15.0.0:
- Feat: upgrade to Angular 15
- 2022.06.21: v14.0.0:
- Feat: upgrade to Angular 14
- 2021.12.07: v8.0.1:
- Fix: NgxEchartsModule.forChild() issue #334
- 2021.11.08: v8.0.0 / v7.1.0:
- Fix: remove @juggle/resize-observer from the peer dependencies
- Perf: fix performance issue #330
- 2021.05.17: v7.0.0:
- Feat: support Angular v11, ECharts v5
- Feat: support echart theme object
- Perf: resize animation
- 2021.01.10: v6.0.1:
- 2021.01.10: v6.0.0:
- 2020.11.07: v5.2.1:
- Required
resize-observer-polyfill
- PR #271: Fix autoResize functionality (by ThomasBower)
- Exposed methods:
refreshChart()
andresize()
- Required
- 2020.07.24: v5.1.0:
- 2020.05.19: v5.0.0
- BREAKING CHANGES:
NgxEchartsModule
provides.forRoot()
method to injectecharts
core.- Due to
.forRoot
method, we can do custom build withoutNgxEchartsCoreModule
. Just import theecharts
core fromecharts/src/echarts
, and other necessary charts. NgxEchartsCoreModule
is removed.[detectEventChanges]
is removed.
- BREAKING CHANGES: