各位前進大家好
小弟是 Angular 新手, 最近有一個圖表的面頁是把公司所有產品類別的過去幾年資料
都做成曲線圖都放在同一頁。
像下面這樣, 我放在 OnInit() 事件中, 一個一個 subscribe 進來
Web API 那端也有非同步傳輸,
this.revenueservice.get_MixRevenue(‘A’)
.subscribe( m => this.ACurve = m );
this.revenueservice.get_MixRevenue(‘B’)
.subscribe( m => this.BCurve = m );
this.revenueservice.get_MixRevenue(‘C’)
.subscribe( m => this.CCurve = m );
this.revenueservice.get_MixRevenue(‘D’)
.subscribe( m => this.DCurve = m );
以此類推, 同一個畫面中有超過 20 個, 我在自己本機測試
只要 Service subscribe 一多, 後面圖表的曲線圖就常常會出錯
不是圖出不來, 就是最近五年只剩下最近三年
請問有什麼建議可以改善這種狀況 ?
謝謝