これは私のcomponents.tsです。 カウントを配列に並べ替えるfuctionを書いて、htmlで並べ替えられた配列データを使ってグラフを作成します。配列を使用してデータをソートする
import { Component } from '@angular/core';
@Component({
selector: 'dashboard',
styleUrls: ['./dashboard.scss'],
templateUrl: './dashboard.html',
})
export class Dashboard {
private data = [];
constructor() {
this.data = [{
'maxTime': 30041,
'minTime': 6453,
'avgTime': 18949,
'count': 4,
'requestRouteTemplate': 'api/GetUserPostponesCountReport',
'requestMethod': 'POST',
},
...
}
]
回答に加えて。私が推奨する[Lodash](https://lodash.com/)と呼ばれるこのきちんとしたライブラリがあります。 – indexoutofbounds