Releases: xieziyu/ngx-echarts
Releases · xieziyu/ngx-echarts
v4.0.0-beta.0
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
.
v3.2.0
3.2.0 (2018-07-24)
New
- [autoResize] now detects its container element's offset height.
Change
- Resizing detection is now debounced.
v2.3.1
2.3.1 (2018-07-24)
New
- [autoResize] now detects its container element's offset height.
Change
- Resizing detection is now debounced.
v3.1.0
3.1.0 (2018-06-13)
New
- [autoResize] now detects its container element's offset width.
v2.2.0
2.2.0 (2018-06-13)
New
- [autoResize] now detects its container element's offset width.
v3.0.1
3.0.1 (2018-06-12)
Bugfix
- Line chart is not animated on init.
v2.1.1
2.1.1 (2018-06-12)
Bugfix
- Line chart is not animated on init.
v3.0.0
3.0.0 (2018-05-08)
Changes
v2.1.0
2.1.0 (2018-03-14)
New
[loadingOpts]
. Use this option to customize loading style.
Bugfix
- Double check
dom.style.height
before setting default value.