blob: faddeecc99cbd22367e370d1fb38958e273d253d [file] [log] [blame]
// This function will be used later for generating a pie chart through eCharts
export class EchartsData {
constructor(statisticData) {
this.statisticData = statisticData
}
listData() {
let table = ''
for (let [key, value] of this.statisticData) {
table += key + ' : ' + value.toString() + ' Blocks' + '\n'
}
return table
}
}