cooler hero chart title
This commit is contained in:
parent
bf10251373
commit
0a72c63cdc
@ -531,6 +531,8 @@ const processGlobalDeaths = async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
worldData.deathGrowthRate = getGrowthRate(worldData);
|
worldData.deathGrowthRate = getGrowthRate(worldData);
|
||||||
|
worldData.population = 7781841000;
|
||||||
|
worldData.deathsPerMillion = worldData.total / worldData.population * 1000000;
|
||||||
|
|
||||||
console.log(`transformed data in ${Date.now() - start}ms`);
|
console.log(`transformed data in ${Date.now() - start}ms`);
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ html
|
|||||||
span.d-inline-block.text-truncate
|
span.d-inline-block.text-truncate
|
||||||
block
|
block
|
||||||
|
|
||||||
mixin heroChart(title)
|
mixin heroChart()
|
||||||
div.card.mb-4
|
div.card.mb-4
|
||||||
div.card-body.position-relative
|
div.card-body.position-relative
|
||||||
div.position-absolute(style="top: 10px; right: 10px")
|
div.position-absolute(style="top: 10px; right: 10px")
|
||||||
@ -220,10 +220,15 @@ html
|
|||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
) Logarithmic
|
) Logarithmic
|
||||||
canvas.mx-auto(id="main-chart" width="800" height="450")
|
canvas.mx-auto(id="main-chart" width="800" height="450")
|
||||||
|
-
|
||||||
|
const growthRate = '+' + (data.deathGrowthRate * 100).toFixed(2) + '%';
|
||||||
|
const population = 'pop. ' + data.population.toLocaleString();
|
||||||
|
const deathsPerMillion = Math.round(data.deathsPerMillion) + '/million';
|
||||||
|
const heroTitle = data.name + ` (${population}, ${deathsPerMillion}, ${growthRate})`;
|
||||||
script.
|
script.
|
||||||
makeHeroChart(
|
makeHeroChart(
|
||||||
'main-chart',
|
'main-chart',
|
||||||
!{JSON.stringify(data.name + ' (' + (data.deathGrowthRate < 0 ? '' : '+') + (data.deathGrowthRate * 100).toFixed(2) + '%)')},
|
!{JSON.stringify(heroTitle)},
|
||||||
!{JSON.stringify(data.timeSeriesDaily.map(x => x.key))},
|
!{JSON.stringify(data.timeSeriesDaily.map(x => x.key))},
|
||||||
!{JSON.stringify(data.timeSeriesDaily.map(x => x.value))},
|
!{JSON.stringify(data.timeSeriesDaily.map(x => x.value))},
|
||||||
!{JSON.stringify(data.timeSeriesDaily.map(x => x.delta))},
|
!{JSON.stringify(data.timeSeriesDaily.map(x => x.delta))},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user