ngx-echarts

An angular (ver >= 2.x) directive for ECharts (ver >= 3.x)

MIT License

Downloads
422.7K
Stars
1.1K
Committers
30

Bot releases are hidden (Show)

ngx-echarts - v5.2.2

Published by xieziyu almost 4 years ago

ngx-echarts - v5.2.1

Published by xieziyu almost 4 years ago

5.2.1 (2020.11.07)

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

Published by xieziyu about 4 years ago

5.1.1 (2020.08.06)

  • PR #254: Fix Angular 10 generic ModuleWithProviders depreciation (by olicooper)
ngx-echarts - v5.1.0

Published by xieziyu about 4 years ago

5.1.0 (2020.07.24)

ngx-echarts - v5.0.0

Published by xieziyu over 4 years ago

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.
ngx-echarts - v4.2.1

Published by xieziyu over 5 years ago

4.2.1 (2019-06-17)

New

  • Support ECharts custom build.
ngx-echarts - v4.1.0

Published by xieziyu almost 6 years ago

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.
ngx-echarts - v4.0.1

Published by xieziyu almost 6 years ago

4.0.1 (2018-11-11)

New

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

Published by xieziyu about 6 years ago

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.
ngx-echarts - v4.0.0-beta.0

Published by xieziyu about 6 years ago

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.
ngx-echarts - v3.2.0

Published by xieziyu about 6 years ago

3.2.0 (2018-07-24)

New

  • [autoResize] now detects its container element's offset height.

Change

  • Resizing detection is now debounced.
ngx-echarts - v2.3.1

Published by xieziyu about 6 years ago

2.3.1 (2018-07-24)

New

  • [autoResize] now detects its container element's offset height.

Change

  • Resizing detection is now debounced.
ngx-echarts - v3.1.0

Published by xieziyu over 6 years ago

3.1.0 (2018-06-13)

New

  • [autoResize] now detects its container element's offset width.
ngx-echarts - v2.2.0

Published by xieziyu over 6 years ago

2.2.0 (2018-06-13)

New

  • [autoResize] now detects its container element's offset width.
ngx-echarts - v3.0.1

Published by xieziyu over 6 years ago

3.0.1 (2018-06-12)

Bugfix

  • Line chart is not animated on init.
ngx-echarts - v2.1.1

Published by xieziyu over 6 years ago

2.1.1 (2018-06-12)

Bugfix

  • Line chart is not animated on init.
ngx-echarts - v3.0.0

Published by xieziyu over 6 years ago

3.0.0 (2018-05-08)

Changes

  • Support Angular 6
ngx-echarts - v2.1.0

Published by xieziyu over 6 years ago

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.
ngx-echarts - v2.0.2

Published by xieziyu over 6 years ago

2.0.2 (2018-02-07)

New

ngx-echarts - v2.0.1

Published by xieziyu almost 7 years ago

2017-12-11

Bugfix

  • Issue: No change detection involved in event handler. Refer to issue #26, #28