You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ Angular directive for echarts v3. (The project is renamed from **angular2-echart
21
21
`ngx-echarts` is an Angular (ver >= 2.x) directive for ECharts 3.
22
22
23
23
# Latest Update
24
+
+ 2017.12.11: v2.0.1. Fix issue: No change detection involved in event handler. Refer to issue [#26](https://github.com/xieziyu/ngx-echarts/issues/26), [#28](https://github.com/xieziyu/ngx-echarts/issues/28)
25
+
24
26
+ 2017.12.04: v2.0.0. Provide an echarts wrapper service: NgxEchartsService. Please see [demo](https://xieziyu.github.io/ngx-echarts/#/usage/NgxEchartsService)
25
27
26
28
+ 2017.11.25: v2.0.0-beta.0. It has some [BREAKING CHANGES](https://github.com/xieziyu/ngx-echarts/blob/master/src/assets/CHANGELOG.md) you should know.
Copy file name to clipboardExpand all lines: src/assets/CHANGELOG.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,16 @@
1
+
## 2.0.1 (2017-12-11)
2
+
3
+
#### Bugfix
4
+
+ Fix issue: No change detection involved in event handler. [#26](https://github.com/xieziyu/ngx-echarts/issues/26), [#28](https://github.com/xieziyu/ngx-echarts/issues/28)
5
+
1
6
## 2.0.0 (2017-12-04)
2
7
3
-
#### NEW
8
+
#### New
4
9
+ New Service: `NgxEchartsService` provided. Refer to [API document](https://xieziyu.github.io/ngx-echarts/api-doc/injectables/NgxEchartsService.html) for details
5
10
6
11
## 2.0.0-beta.0 (2017-11-25)
7
12
8
-
#### NEW
13
+
#### New
9
14
+ New input: `[merge]`. The value of `[merge]` will be merged into `[options]`. So it's perfect for updating chart data series. Refer to [ECharts documentation](https://ecomfe.github.io/echarts-doc/public/en/api.html#echartsInstance.setOption) for details
10
15
11
16
+ New input: `[initOpts]`. The value of `[initOpts]` will be used in `echarts.init()`. It may contain `devicePixelRatio`, `renderer`, `width` or `height` properties. Refer to [ECharts documentation](https://ecomfe.github.io/echarts-doc/public/en/api.html#echarts.init) for details
0 commit comments