Ale*_*x G 3 typescript echarts angular
目的:我正在尝试为 ECharts(图表库)构建一个简单的 Angular 2 指令
细节:
我在 中创建图表ngAfterViewInit(),这是第一次,它有效,当窗口调整大小时图表会调整大小。
然后我单击到另一个页面,ngOnDestroy()运行,图表被销毁。
然后我点击返回图表页面,图表被重新创建,但是,这次图表不会在窗口大小调整时调整大小,而是console.log(chart)返回'undefined'而不是 echarts 实例。
如何再次获取echarts实例并使其可调整大小?
所有代码:
EChartsDirective以下是ECharts的全部代码:
import { Directive, ElementRef, Input } from '@angular/core';
let echarts = require('echarts');
@Directive({ selector: '[myECharts]' })
export class EChartsDirective {
el: ElementRef;
constructor(el: ElementRef) {
this.el = el;
}
@Input() EChartsOptions: any;
private mychart;
ngAfterViewInit() {
let chart = this.mychart = echarts.init(this.el.nativeElement);
if (!this.EChartsOptions) return;
this.mychart.setOption(this.EChartsOptions);
$(window).on('resize', function(){
console.log(chart);
chart.resize(); // <- this only works for the first time
// if I change to another page, then back to chart page, it will return 'undefined'
// the chart is still there, but won't resize on window resize any more
})
}
ngOnDestroy() {
if (this.mychart) {
this.mychart.dispose();
}
}
}
Run Code Online (Sandbox Code Playgroud)
ngAfterViewInit() {
this.mychart = echarts.init(this.el.nativeElement);
if (!this.EChartsOptions) return;
this.mychart.setOption(this.EChartsOptions);
}
@HostListener('window:resize)
onResize() {
console.log(chart);
if(this.mychart) {
this.mychart.resize();
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5801 次 |
| 最近记录: |