ng4中使用echart;升级脚手架到最新版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng4中使用echart;升级脚手架到最新版本相关的知识,希望对你有一定的参考价值。

1.首先创建echarts指令

技术分享
 //echart.directive.ts
important { Directive,ElementRef,Input,Ouput,Onchanges,OnInit,OnDestroy,SimpleChanges,EventEmitter} from ‘@angular/core‘;
important * as echarts from ‘echarts‘;
 
@Directive({
   selector: ‘echart‘ 
})
 
export class EchartOptiononDirective implements OnInin,OnChanges,OnDestroy {
    @Input(‘chartType‘) chartType:any;
    @Output() resizeEle = new EventEmitter<any>();
    public Ele;
    constructor(private el:ElementRef){}
 
    ngOnInit():void {}
    ngOnChanges(changes:SimpleChanges)   {
      let params;
      if(params != this.chartType){
         params = this.chartType;
         if(this.Ele){this.Ele.dispose()}  //每次change改变echart实例,防止内存泄漏
         this.Ele = echarts.init(this.el.nativeElement);  //绘制图表
         this.Ele.setOption(this.chartType);
         this.resizeEle.emit(this.Ele);  //resize图表
       }     
    }
    ngOnDestroy(){
        if(this.Ele){this.Ele.dispose()}
    }
}
技术分享

 2.组件模板中引入指令

技术分享
//echart.module.ts
import {EchartOptionDirective} from ‘./echart.directive‘

@NgModule({
    declarations:[
        EchartOptionDirective
    ]
})
技术分享

3.组件中使用echart

技术分享
//echart.component.ts
export class EchartComponent implements OnInit,OnDestroy{
    public chartoption:any;
    public echart:any;
    constructor(){
        window.onresize = () => {   //改变窗口大小reseze图表
            this.echart.resize();
        }
    }
    ngOnInit(){
        window.onresize = () => {
            this.echart.resize();
        }
    }
    ngOnDestroy() {
        window.onresize = () => {}; //防止内存泄漏
    }
    resizeElement(e){  
        this.echart= e;
    }
    renderChart(){
        this.chartoption = {
            //此处为echart图表相关内容
            backgtoundColor:‘#fff‘,
            title:{},
            ...
        }
    }
}    
技术分享

4.html中使用echart

//echart.component.html
<echart *ngIf = "chartoption" [chartType] = "chartoption" (resizeEle) = "resizeElement($event)"></echart>

 

 

 

升级脚手架到最新版本

//先卸载,后安装
npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/[email protected]

以上是关于ng4中使用echart;升级脚手架到最新版本的主要内容,如果未能解决你的问题,请参考以下文章

第一章构建vue项目,代码仓库管理

记录一次echarts4升级到echart5

记录一次echarts4升级到echart5

vue 脚手架的使用 vue-cli

旧版vue-cli脚手架Webpack3项目如何升级Webpack4

升级到最新版本后,我的php代码在wordpress编辑器中不断被禁用