gpt4 book ai didi

angular - ng2图表多图表更新

转载 作者:行者123 更新时间:2023-12-05 08:22:55 25 4
gpt4 key购买 nike

在我的代码中,我使用 API 获取用于监控的服务器数据我有多个图表,所有图表都工作正常,所以我每 1 秒更新一次图表,我也每 1 秒从服务器调用一次 API,但只有我的第一个图表不会更新其他图表,任何解决方案?注意:我正在使用 valor-software 的 ng2-chart

import { Chart } from 'chart.js';
import { ChangeDetectorRef } from '@angular/core';
import { Component, OnInit,ViewChild} from '@angular/core';
import { ApiServiceService } from '../api-service.service';
import { Observable , interval } from 'rxjs';
import { switchMap} from 'rxjs/operators';
import {IData} from '../interface/data'
import { BaseChartDirective} from 'ng2-charts';
import { DatePipe } from '@angular/common';
Chart.defaults.global.elements.line.fill = false;
//==================================================
import { Servers } from '../custom-config/servers'; // Servers Data
import {lineChart} from '../custom-config/chart-config'// chart Configration Data


@Component({
selector: 'app-server-monit',
templateUrl: './server-monit.component.html',
styleUrls: ['./server-monit.component.css'],
})
export class ServerMonitComponent implements OnInit {
@ViewChild( BaseChartDirective) chart: BaseChartDirective;

public _servers= Servers;
//==========================================
// time
pipe = new DatePipe('en-US'); // Use your own locale
public now;
public currentTime;

//==========================================
// Line Chart configration
public chartType = 'line';
public chartLegend = true;
public chartColor = '#eee'
public chartOptions = lineChart.Options
public colors = lineChart.Colors


constructor(private api: ApiServiceService) {

}

ngOnInit() {
for (let i = 0; i < this._servers.length; i++ ) {
// get data on Init
this.api.checkServer(this._servers[i].ip+':'+this._servers[i].port).subscribe((data:IData) => {
this.proccessData(data, i)
});
// get data every subsequent 1 seconds
const result = interval(1000).pipe(
switchMap(() => this.api.checkServer(this._servers[i].ip+':'+this._servers[i].port)),)
.subscribe((data:IData) => {
this.proccessData(data, i) // proccess the APIdata
this.forceChartRefresh(); // Update charts
});
}
}

proccessData(data: IData , index){

this.now = Date.now();
this.currentTime = this.pipe.transform(this.now, 'mediumTime');
//=============================================================
let totalClients = data.total_clients;
let input = Math.round(data.input_kbit /1024);
let output = Math.round(data.output_kbit /1024);

if(
this._servers[index].charts.traffic.dataset[0].data.length <= 20 &&
this._servers[index].charts.traffic.dataset[1].data.length <= 20 &&
this._servers[index].charts.traffic.dataset[2].data.length <= 20
){
this._servers[index].charts.traffic.dataset[0].data.push(totalClients)
this._servers[index].charts.traffic.dataset[1].data.push(input)
this._servers[index].charts.traffic.dataset[2].data.push(output)
this._servers[index].charts.traffic.labels.push(this.currentTime)
}
else {
this._servers[index].charts.traffic.dataset[0].data.shift()
this._servers[index].charts.traffic.dataset[1].data.shift()
this._servers[index].charts.traffic.dataset[2].data.shift()
this._servers[index].charts.traffic.labels.shift()

}

}

forceChartRefresh() {
this.chart.chart.update()
}
}
<p>
server-monit works!
</p>
<div class="col-4" *ngFor="let server of _servers">
<div>
<canvas baseChart
[datasets]="server.charts.traffic.dataset"
[labels]="server.charts.traffic.labels"
[options]="chartOptions"
[colors]=""
[legend]="chartLegend"
[chartType]="chartType"
></canvas>
</div>
</div>

最佳答案

经过一些研究,我发现了问题:问题是:

@ViewChild( BaseChartDirective) chart: BaseChartDirective;

它只选择第一个 child ,所以

this.chart.chart.update()

只更新第一个 child ,解决方案是:应该使用QueryList

@ViewChildren(BaseChartDirective) charts: QueryList<BaseChartDirective>;

并更新列表:

  this.charts.forEach((child) => {
child.chart.update()
});

关于angular - ng2图表多图表更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54635545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com