Browse Source

Convert value

pull/408/head
Thomas 4 years ago
parent
commit
fb55609996
  1. 7
      apps/client/src/app/components/world-map-chart/world-map-chart.component.ts

7
apps/client/src/app/components/world-map-chart/world-map-chart.component.ts

@ -54,6 +54,13 @@ export class WorldMapChartComponent implements OnChanges, OnDestroy, OnInit {
((this.countries[country].value * 100) / sum).toFixed(2)
);
});
} else {
// Convert value to fixed-point notation
Object.keys(this.countries).map((country) => {
this.countries[country].value = Number(
this.countries[country].value.toFixed(2)
);
});
}
this.svgMapElement = new svgMap({

Loading…
Cancel
Save