-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTopCards.tsx
1698 lines (1697 loc) · 45.5 KB
/
TopCards.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import UNDPColorModule from 'undp-viz-colors';
export const TOP_CARDS = [
{
id: 'Default',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population, total',
},
},
{
vizType: 'stackedLineChart',
settings: {
dataKey: ['Rural Population, total', 'Urban Population, total'],
strokeWidth: 1,
lineColors: [
UNDPColorModule.categoricalColors.locationColors.rural,
UNDPColorModule.categoricalColors.locationColors.rural,
],
graphTitle: 'Urban and Rural Population',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'GHG emission',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Greenhouse Gas Emission',
suffix: 'MtC02e',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
suffix: '%',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey: 'Access to electricity (% of population)',
graphTitle: 'People with access to electricity',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Primary energy consumption per capita, measured in kilowatt-hours',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Primary energy consumption per capita, measured in kilowatt-hours',
suffix: 'kWh',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human Development Index',
},
},
],
},
{
id: 'Poverty and Inequality',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
suffix: '%',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey: 'Vulnerable persons covered by social assistance',
graphTitle: 'Vulnerable persons covered by social assistance',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Inequality-adjusted HDI',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Inequality-adjusted Human Development Index',
},
},
],
},
{
id: 'Energy',
cards: [
{
vizType: 'dotPlot',
settings: {
dataKey: 'Access to electricity (% of population)',
graphTitle: 'People with access to electricity',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Access to clean fuels and technologies for cooking (% of population)',
graphTitle:
'People with access to clean fuels and technologies for cooking',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Renewable energy consumption (% of total final energy consumption)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Renewable energy consumption (% of total final energy consumption)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Energy imports, net (% of energy use)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Energy imports (% of energy use)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Primary energy consumption per capita, measured in kilowatt-hours',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Primary energy consumption per capita, measured in kilowatt-hours',
suffix: 'kWh',
},
},
],
},
{
id: 'Environment',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'GHG emission',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Greenhouse Gas Emission',
suffix: 'MtC02e',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Forest area (% of land area)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Forest area, percent of total land area',
suffix: '%',
},
},
{
vizType: 'valueCard',
settings: {
dataKey:
'Planetary pressures adjusted Human Development Index (value)',
graphTitle: 'Planetary pressures adjusted Human Development Index',
},
},
],
},
{
id: 'Gender',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Gender Inequality Index-Labour force participation rate, female (% ages 15 and older)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Labour force participation rate, female (% ages 15 and older)',
suffix: '%',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Gender Inequality Index-Share of seats in parliament (% held by women)',
graphTitle: 'Share of seats in parliament (% held by women)',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Proportion of women subjected to physical and/or sexual violence in the last 12 months (% of women age 15-49)',
dotColor: 'var(--dark-red)',
graphTitle: 'No. of women subjected to violence in last 12 months ',
},
},
],
},
{
id: 'Governance',
cards: [
{
vizType: 'dotPlot',
settings: {
dataKey: 'Individuals using the Internet (% of population)',
graphTitle: 'People with access to internet',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Inequality in income',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Inequality in income',
suffix: '',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Inequality in life expectancy',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Inequality in life expectancy',
suffix: '',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'CPIA Public sector management and institutions',
graphTitle: 'Public Sector Management and Institutions Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Strength of legal rights index (0=weak to 12=strong)',
graphTitle: 'Strength of legal rights index',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Youth Unemployment (% of total labor force ages 15-24)',
suffix: '%',
},
},
],
},
{
id: 'Resilience',
cards: [
{
vizType: 'valueCard',
settings: {
dataKey: 'Refugee population by country or territory of asylum',
graphTitle: 'Refugee population by country or territory of asylum',
description: false,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Population ages 65 and above (% of total population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population ages 65 and above (% of total population)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Rural Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Rural Population, total',
suffix: '',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Urban Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Urban Population, total',
suffix: '',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'International migrant stock at mid-year (both sexes)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'International Migrant Stock at Mid-Year, total',
suffix: '',
},
},
{
vizType: 'dotPlot',
settings: {
dotColor: 'var(--dark-red)',
dataKey: "Women's share of population ages 15+ living with HIV (%)",
graphTitle: 'Population Living with HIV, share of women ages 15+',
},
},
{
vizType: 'valueCard',
settings: {
dataKey:
'Prevalence of Mental health disorders: Both (age-standardized percent)',
graphTitle:
'Prevalence of Mental Health Disorders, both sexes age-standardized percent',
description: false,
suffix: '%',
},
},
{
vizType: 'valueCard',
settings: {
dataKey:
'Proportion of local governments that adopt and implement local disaster risk reduction (DRR) strategies in line with national disaster risk reduction strategies (%)',
graphTitle:
'Proportion of local governments that adopt and implement local disaster risk reduction strategies in line with national disaster risk reduction strategies (%)',
description: false,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'External Peace',
graphTitle: 'External Peace Score',
description: false,
},
},
],
},
{
id: 'AP',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Multidimensional Poverty Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Multidimensional Poverty Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human Development Index',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey: 'Individuals using the Internet (% of population)',
graphTitle: 'People with access to internet',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Gender Inequality Index-Labour force participation rate, female (% ages 15 and older)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Female labour force participation rate',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Youth Unemployment (% of total labor force ages 15-24)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population, total',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)',
suffix: '%',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Access to clean fuels and technologies for cooking (% of population)',
graphTitle:
'People with access to clean fuels and technologies for cooking',
},
},
],
},
{
id: 'SSA',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Gross National Income Per Capita (2017 PPP$)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gross National Income Per Capita (2017 PPP$)',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human Development Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'GINI index (World Bank estimate)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GINI Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population, total',
},
},
],
},
{
id: 'LAC',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Population, total',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population, total',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'GDP per capita, PPP (current international $)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GDP per capita, PPP (current international $)',
prefix: 'US $',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gross domestic product, constant prices, percent change',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GDP, Percent change',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human Development Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'GINI index (World Bank estimate)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GINI Index',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
],
},
{
id: 'ECA',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $6.85 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $6.85 a day (2017 PPP), % of population',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Access to clean fuels and technologies for cooking (% of population)',
graphTitle:
'People with access to clean fuels and technologies for cooking',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Gender Inequality Index-Share of seats in parliament (% held by women)',
graphTitle: 'Share of seats in parliament (% held by women)',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Coefficient of human inequality',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Coefficient of human inequality',
suffix: '',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Population ages 65 and above (% of total population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Population ages 65 and above, % of total population',
suffix: '%',
},
},
],
},
{
id: 'AS',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human development index (HDI)',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Development Index (value)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Development Index (GDI)',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey:
'Gender Inequality Index-Share of seats in parliament (% held by women)',
graphTitle: 'Share of seats in parliament (% held by women)',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Youth Unemployment (% of total labor force ages 15-24)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Poor persons covered by social protection systems',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Percentage of poor persons covered by social protection systems',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Inequality-adjusted HDI',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Inequality-adjusted Human Development Index',
},
},
],
},
{
id: 'PAK',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Rule of Law: Estimate',
graphTitle: 'Rule of Law Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'CPIA Public sector management and institutions',
graphTitle: 'Public Sector Management and Institutions Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'CPIA policies for social inclusion/equity cluster average',
graphTitle: 'Social Inclusion and Equity Index',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Labor force with advanced education (% of total working-age population with advanced education)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Proportion of Labour Force with Advanced Education',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'CPIA structural policies cluster average (1=low to 6=high)',
graphTitle: 'Structural Policies Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Government Effectiveness: Estimate',
graphTitle: 'Government Effectiveness Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Voice and Accountability (estimate)',
graphTitle: 'Voice and Accountability Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Refugees and IDPs Pressure on State',
graphTitle: 'Refugees and IDPs Score',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Natural Capital, USD per capita',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Natural capital',
prefix: 'US $',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Government Debt',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Net debt as percent of GDP',
suffix: '%',
},
},
],
},
{
id: 'GEO',
cards: [
{
vizType: 'valueCard',
settings: {
dataKey: 'Government Effectiveness: Estimate',
graphTitle: 'Government Effectiveness Index',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gross domestic product, constant prices, percent change',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GDP, Percent change',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $3.65 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $3.65 a day (2017 PPP) (% of population)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Gender Inequality Index-Maternal mortality ratio (deaths per 100,000 live births)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Maternal mortality ratio (deaths per 100,000 live births)',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Strength of legal rights index (0=weak to 12=strong)',
graphTitle: 'Strength of legal rights index',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Carbon dioxide emissions per capita (production) (tonnes)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Carbon dioxide emissions production per capita, tonnes',
suffix: 't',
},
},
],
},
{
id: 'KGZ',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Human development index (HDI)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Human Development Index',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Government Effectiveness: Estimate',
graphTitle: 'Government Effectiveness Index',
description: true,
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Rule of Law: Estimate',
graphTitle: 'Rule of Law Index',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Gender Inequality Index-Gender Inequality Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Gender Inequality Index',
},
},
{
vizType: 'valueCard',
settings: {
dataKey: 'Climate Risks Index Score',
graphTitle: 'Climate Risks Index Score',
description: true,
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'GDP per capita, PPP (current international $)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GDP per capita, PPP (current international $)',
prefix: 'US $',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Poverty headcount ratio at $3.65 a day (2017 PPP) (% of population)',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Poverty headcount ratio at $3.65 a day (2017 PPP) (% of population)',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Primary energy consumption per capita, measured in kilowatt-hours',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle:
'Primary energy consumption per capita, measured in kilowatt-hours',
suffix: 'kWh',
},
},
{
vizType: 'dotPlot',
settings: {
dataKey: 'Individuals using the Internet (% of population)',
graphTitle: 'People with access to internet',
},
},
{
vizType: 'lineChart',
settings: {
dataKey:
'Share of Informal employment by sex and age (%), Total, 15 and above',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Share of Informal employment',
suffix: '%',
},
},
],
},
{
id: 'UZB',
cards: [
{
vizType: 'lineChart',
settings: {
dataKey: 'Gross domestic product, constant prices, percent change',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'GDP, Percent change',
suffix: '%',
},
},
{
vizType: 'lineChart',
settings: {
dataKey: 'Multidimensional Poverty Index',
strokeWidth: 1,
lineColor: '#232E3D',
graphTitle: 'Multidimensional Poverty Index',