博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
use ECharts with Angular 2 and TypeScript
阅读量:5909 次
发布时间:2019-06-19

本文共 1584 字,大约阅读时间需要 5 分钟。

https://stackoverflow.com/questions/38158318/is-it-possible-to-use-echarts-baidu-with-angular-2-and-typescript

npm install --save echartsnpm install --save-dev @types/echarts

code

import {  Directive, ElementRef, Input, OnInit, HostBinding, OnChanges, OnDestroy} from '@angular/core';import {Subject, Subscription} from "rxjs";import * as echarts from 'echarts';import ECharts = echarts.ECharts;import EChartOption = echarts.EChartOption;@Directive({  selector: '[ts-chart]',})export class echartsDirective implements OnChanges,OnInit,OnDestroy {  private chart: ECharts;  private sizeCheckInterval = null;  private reSize$ = new Subject
(); private onResize: Subscription; @Input('ts-chart') options: EChartOption; @HostBinding('style.height.px') elHeight: number; constructor(private el: ElementRef) { this.chart = echarts.init(this.el.nativeElement, 'vintage'); } ngOnChanges(changes) { if (this.options) { this.chart.setOption(this.options); } } ngOnInit() { this.sizeCheckInterval = setInterval(() => { this.reSize$.next(`${
this.el.nativeElement.offsetWidth}:${
this.el.nativeElement.offsetHeight}`) }, 100); this.onResize = this.reSize$ .distinctUntilChanged() .subscribe((_) => this.chart.resize()); this.elHeight = this.el.nativeElement.offsetHeight; if (this.elHeight < 300) { this.elHeight = 300; } } ngOnDestroy() { if (this.sizeCheckInterval) { clearInterval(this.sizeCheckInterval); } this.reSize$.complete(); if (this.onResize) { this.onResize.unsubscribe(); } }}

 

转载地址:http://ckvpx.baihongyu.com/

你可能感兴趣的文章
java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleExcept问题解决方案
查看>>
JdbcTemplate(2)(数据连接池)
查看>>
getopt()——命令行参数分析
查看>>
600. Non-negative Integers without Consecutive Ones
查看>>
关于正则表达式的入门心得
查看>>
构建高性能数据库缓存之redis主从复制
查看>>
圆柱、圆锥的侧面积和球的表面积公式推导(不用积分)
查看>>
滑雪在日本 之 新泻篇 5
查看>>
【DataStructure In Python】Python实现各种排序算法
查看>>
【HDOJ】3061 Battle
查看>>
学习,一定要坚持
查看>>
Octopus系列之js公共函数
查看>>
ELK日志分析系统
查看>>
WPF-系统托盘
查看>>
如何合理的使用工具提高效率?
查看>>
光盘自动运行HTML页,Autorun文件写法
查看>>
【344】Jupyter relevant problems
查看>>
wpgcms---设置应用模板
查看>>
axios 拦截 , 页面跳转, token 验证(自己摸索了一天搞出来的)
查看>>
基础设施即服务系列:Windows Azure上支持Linux虚拟机
查看>>