摘要:目標(biāo)展現(xiàn)層與邏輯層分離數(shù)據(jù)與可視化組件相分離數(shù)據(jù)與視圖雙向綁定實(shí)時(shí)更新代碼結(jié)構(gòu)清晰易于維護(hù)與修改基本原理的組件生命周期鉤子方法父子組件交互機(jī)制模板語法源碼解析代碼結(jié)構(gòu)很簡(jiǎn)單,其中除主頁和之外的代碼結(jié)構(gòu)如下所示實(shí)現(xiàn)宿主視圖定義,個(gè)按鈕,按鈕
目標(biāo)
展現(xiàn)層與邏輯層分離
數(shù)據(jù)與可視化組件相分離
數(shù)據(jù)與視圖雙向綁定,實(shí)時(shí)更新
代碼結(jié)構(gòu)清晰,易于維護(hù)與修改
基本原理angular2 的組件生命周期鉤子方法父子組件交互機(jī)制模板語法
源碼解析代碼結(jié)構(gòu)很簡(jiǎn)單,其中除主頁index.html和main.ts之外的代碼結(jié)構(gòu)如下所示:
import { BrowserModule } from "@angular/platform-browser"; import { NgModule } from "@angular/core"; import { FormsModule } from "@angular/forms"; //components import { AppComponent } from "./app.component"; import { Bubbles } from "./bubbles.component"; @NgModule({ declarations: [ AppComponent, Bubbles ], imports: [ BrowserModule, FormsModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }app.component.html
實(shí)現(xiàn)宿主視圖定義,
2個(gè)按鈕,按鈕可以綁定了2點(diǎn)點(diǎn)擊事件,執(zhí)行相應(yīng)的動(dòng)作,刷新數(shù)組,同時(shí)完成汽泡圖的更新;
1個(gè)汽泡圖子組件,其中values為子組件的輸入屬性,實(shí)現(xiàn)父子組件之間的通信,numArray為汽泡圖的輸入數(shù)據(jù)數(shù)組,后續(xù)為隨機(jī)生成的數(shù)組
app.component.ts
通過指定一個(gè)3秒刷新一次的定時(shí)器,刷新數(shù)據(jù),這里需要注意,需要先清空數(shù)組,再添加元素,直接修改數(shù)組元素值而不改變引用,則無法刷新汽泡圖
import { Component, OnDestroy, OnInit } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", styleUrls: ["./app.component.css"] }) export class AppComponent implements OnInit, OnDestroy { intervalId = 0; numArray = []; // 清除定時(shí)器 private clearTimer() { console.log("stop refreshing"); clearInterval(this.intervalId); } // 生成指定范圍內(nèi)的隨機(jī)數(shù) private getRandom(begin, end) { return Math.floor(Math.random() * (end - begin)); } ngOnInit() { for (let i in this.numArray) { this.numArray[i] = this.getRandom(0, 100000000); // "0", "1", "2", }; } // 元素關(guān)閉清除定時(shí)器 ngOnDestroy() { this.clearTimer(); } // 啟動(dòng)定時(shí)刷新數(shù)組 refreshArr() { this.clearTimer() this.intervalId = window.setInterval(() => { this.numArray = []; for (let i=0;i<8;i++) { this.numArray.push(this.getRandom(0, 100000000)); } }, 3000); } // 停止定時(shí)刷新數(shù)組 stopRefresh() { this.clearTimer(); } }bubbles.component.ts 汽泡圖組件類
ngOnChanges() 生命周期方法,可以在輸入屬性values發(fā)生變化時(shí),自動(dòng)被調(diào)用;
@ViewChild 可以獲取對(duì)子元素svg的引用,其中#target自定義變量用于標(biāo)識(shí)svg子元素
import { Component, Input, OnChanges, AfterViewInit, ViewChild} from "@angular/core"; import {BubblesChart} from "./bubbles.chart"; declare var d3; @Component({ selector: "bubbles", template: "", }) export class Bubbles implements OnChanges, AfterViewInit { @Input() values: number[]; chart: BubblesChart; @ViewChild("target") target;//獲得子組件的引用 constructor() { } // 每當(dāng)元素對(duì)象上綁定的數(shù)據(jù) 輸入屬性值 values 發(fā)生變化時(shí),執(zhí)行下列函數(shù),實(shí)現(xiàn)圖表動(dòng)態(tài)變化 ngOnChanges(changes) { if (this.chart) { // 先清空汽泡圖,再重新調(diào)用汽泡圖對(duì)象的render方法,根據(jù)變動(dòng)后的值繪制圖形 this.chart.destroy(); this.chart.render(changes.values.currentValue); } } ngAfterViewInit() { // 初始化汽泡圖 this.chart = new BubblesChart(this.target.nativeElement); this.chart.render(this.values); } }bubbles.chart.ts 汽泡圖類
d3.js 語法定義的汽泡圖類,自帶一個(gè)繪制方法和擦除方法
需要在index.html當(dāng)中先引入
declare var d3; // define a bubble chart class // Exports the visualization module export class BubblesChart { target: HTMLElement; //構(gòu)造函數(shù), 基于一個(gè) HTML元素對(duì)象內(nèi)部來繪制 constructor(target: HTMLElement) { this.target = target; } // 渲染 入?yún)閿?shù)值 完成基于一個(gè)數(shù)組的 汽泡圖的繪制 render(values: number[]) { console.log("start rendering"); console.log(values); d3.select(this.target) // Get the old circles .selectAll("circle") .data(values) .enter() // For each new data point, append a circle to the target SVG .append("circle") // Apply several style attributes to the circle .attr("r", d => Math.log(d)) // 半徑 .attr("fill", "#5fc") // 顏色 .attr("stroke", "#333") // 輪廓顏色 .attr("transform", (d, i) => { // 移動(dòng)位置 var offset = i * 30 + 3 * Math.log(d); return `translate(${offset}, ${offset})`; }); } destroy() { d3.select(this.target).selectAll("circle").remove(); } }效果展示
(參考文章:https://www.ibm.com/developer...)
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/107587.html
摘要:適用于,演示這是開發(fā)的一個(gè)簡(jiǎn)單的可視化庫,它允許你創(chuàng)建所有常用的圖表類型條形圖,樹形圖,折線圖,面積圖等??梢暂p松地對(duì)折線圖和條形圖進(jìn)行混合和匹配以組合不同的數(shù)據(jù)集,這是非常棒的功能。 翻譯:瘋狂的技術(shù)宅原文:https://www.monterail.com/blo... 本文首發(fā)微信公眾號(hào):jingchengyideng歡迎關(guān)注,每天都給你推送新鮮的前端技術(shù)文章 你的程序有多...
摘要:發(fā)布一直是數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的版本的更新包括使用代替回調(diào)函數(shù),等高線圖和密度圖。詳情發(fā)布該版本更新包括模塊調(diào)整,模塊新增函數(shù)判斷終端是否支持顏色,棄用函數(shù)和等。 01. D3.js 5.0 發(fā)布 D3 一直是 JavaScript 數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的 5.0 版本的更新包括:使用 Promise 代替回調(diào)函數(shù),等高線圖和密度圖。 詳情:https://gith...
摘要:發(fā)布一直是數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的版本的更新包括使用代替回調(diào)函數(shù),等高線圖和密度圖。詳情發(fā)布該版本更新包括模塊調(diào)整,模塊新增函數(shù)判斷終端是否支持顏色,棄用函數(shù)和等。 01. D3.js 5.0 發(fā)布 D3 一直是 JavaScript 數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的 5.0 版本的更新包括:使用 Promise 代替回調(diào)函數(shù),等高線圖和密度圖。 詳情:https://gith...
摘要:發(fā)布一直是數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的版本的更新包括使用代替回調(diào)函數(shù),等高線圖和密度圖。詳情發(fā)布該版本更新包括模塊調(diào)整,模塊新增函數(shù)判斷終端是否支持顏色,棄用函數(shù)和等。 01. D3.js 5.0 發(fā)布 D3 一直是 JavaScript 數(shù)據(jù)可視化的不錯(cuò)選擇。本次發(fā)布的 5.0 版本的更新包括:使用 Promise 代替回調(diào)函數(shù),等高線圖和密度圖。 詳情:https://gith...
摘要:本文是譯文,原文是我在原文的基礎(chǔ)上加了百度的圖表庫,這個(gè)也是毫不遜色其他圖表庫的。更新記錄圖表類數(shù)據(jù)驅(qū)動(dòng)文檔通常被稱為最強(qiáng)大的開源可視化庫。是迄今為止最好的圖表庫。在頂級(jí)功能支持,使任何元素可拖動(dòng),可旋轉(zhuǎn)或可滑動(dòng)滾動(dòng)和快速性能的能力。 本文是譯文,原文是https://da-14.com/blog/top-11...我在原文的基礎(chǔ)上加了百度的Echats圖表庫,這個(gè)也是毫不遜色其他圖表...
閱讀 3409·2021-09-22 15:01
閱讀 535·2019-08-30 11:11
閱讀 965·2019-08-29 16:17
閱讀 1218·2019-08-29 12:23
閱讀 2035·2019-08-26 11:48
閱讀 3188·2019-08-26 11:48
閱讀 1427·2019-08-26 10:33
閱讀 1937·2019-08-26 10:30