@cdc/chart 4.23.3 → 4.23.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/dist/cdcchart.js +52543 -50830
  2. package/examples/feature/__data__/area-chart.json +56 -0
  3. package/examples/{planet-example-data.json → feature/__data__/planet-example-data.json} +3 -8
  4. package/examples/feature/__data__/planet-logaritmic-data.json +56 -0
  5. package/examples/feature/area/area-chart-category.json +240 -0
  6. package/examples/{area-chart.json → feature/area/area-chart-date.json} +70 -13
  7. package/examples/feature/bar/example-bar-chart.json +558 -0
  8. package/examples/{horizontal-chart-max-increase.json → feature/bar/horizontal-chart-max-increase.json} +10 -4
  9. package/examples/{horizontal-chart.json → feature/bar/horizontal-chart.json} +10 -4
  10. package/examples/{horizontal-stacked-bar-chart.json → feature/bar/horizontal-stacked-bar-chart.json} +7 -3
  11. package/examples/{planet-chart-horizontal-example-config.json → feature/bar/planet-chart-horizontal-example-config.json} +8 -3
  12. package/examples/feature/bar/planet-chart-logaritmic-config.json +170 -0
  13. package/examples/{planet-example-config.json → feature/bar/planet-example-config.json} +2 -2
  14. package/examples/{box-plot.json → feature/boxplot/boxplot.json} +7 -7
  15. package/examples/feature/boxplot/testing.csv +38 -0
  16. package/examples/feature/boxplot/valid-boxplot.csv +17 -0
  17. package/examples/feature/combo/combochart-categories_are_numbers .json +18 -0
  18. package/examples/{planet-combo-example-config.json → feature/combo/planet-combo-example-config.json} +1 -1
  19. package/examples/{planet-deviation-config.json → feature/deviation/planet-deviation-config.json} +2 -2
  20. package/examples/{planet-deviation-data.json → feature/deviation/planet-deviation-data.json} +9 -9
  21. package/examples/feature/filters/filter-testing.json +212 -0
  22. package/examples/feature/forecasting/case_date_example.csv +130 -0
  23. package/examples/feature/forecasting/effective_reproduction.json +202 -0
  24. package/examples/feature/forecasting/r_data.csv +130 -0
  25. package/examples/feature/forecasting/random_data.csv +366 -0
  26. package/examples/feature/line/line-chart.json +124 -0
  27. package/examples/{paired-bar-example.json → feature/paired-bar/paired-bar-example.json} +10 -4
  28. package/examples/{planet-pie-example-config.json → feature/pie/planet-pie-example-config.json} +2 -2
  29. package/examples/{scatterplot.json → feature/scatterplot/scatterplot.json} +1 -1
  30. package/examples/feature/test-highlight/test-highlight-2.json +789 -0
  31. package/examples/feature/test-highlight/test-highlight-vertical.json +561 -0
  32. package/examples/feature/test-highlight/test-highlight.json +100 -0
  33. package/examples/{case-rate-example-config.json → feature/tests-case-rate/case-rate-example-config.json} +2 -2
  34. package/examples/{covid-confidence-example-config.json → feature/tests-covid/covid-confidence-example-config.json} +8 -3
  35. package/examples/{covid-example-config.json → feature/tests-covid/covid-example-config.json} +7 -3
  36. package/examples/{cutoff-example-config.json → feature/tests-cutoff/cutoff-example-config.json} +7 -3
  37. package/examples/{date-exclusions-config.json → feature/tests-date-exclusions/date-exclusions-config.json} +2 -2
  38. package/examples/{example-bar-chart-nonnumeric.json → feature/tests-non-numerics/example-bar-chart-nonnumeric.json} +1 -1
  39. package/examples/{planet-pie-example-config-nonnumeric.json → feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json} +2 -2
  40. package/examples/{sparkline-chart-nonnumeric.json → feature/tests-non-numerics/sparkline-chart-nonnumeric.json} +1 -1
  41. package/examples/{stacked-vertical-bar-example-nonnumerics.json → feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json} +1 -2
  42. package/examples/gallery/bar-chart-horizontal/horizontal-highlight.json +345 -0
  43. package/examples/gallery/bar-chart-vertical/combo-line-chart.json +145 -7
  44. package/examples/gallery/paired-bar/paired-bar-chart.json +1 -0
  45. package/index.html +73 -49
  46. package/package.json +2 -2
  47. package/src/CdcChart.jsx +405 -40
  48. package/src/components/AreaChart.jsx +122 -80
  49. package/src/components/BarChart.jsx +126 -49
  50. package/src/components/BoxPlot.jsx +28 -20
  51. package/src/components/DataTable.jsx +7 -6
  52. package/src/components/DeviationBar.jsx +34 -34
  53. package/src/components/EditorPanel.jsx +1332 -352
  54. package/src/components/Legend.jsx +40 -4
  55. package/src/components/LineChart.jsx +10 -23
  56. package/src/components/LinearChart.jsx +133 -286
  57. package/src/components/PairedBarChart.jsx +6 -6
  58. package/src/components/PieChart.jsx +2 -4
  59. package/src/components/SparkLine.jsx +6 -42
  60. package/src/data/initial-state.js +23 -4
  61. package/src/hooks/useHighlightedBars.js +154 -0
  62. package/src/hooks/useMinMax.js +92 -0
  63. package/src/hooks/useReduceData.js +31 -57
  64. package/src/hooks/useScales.js +202 -0
  65. package/src/index.jsx +2 -1
  66. package/src/scss/editor-panel.scss +15 -0
  67. package/src/scss/main.scss +8 -6
  68. package/examples/box-plot.csv +0 -5
  69. package/examples/dynamic-legends.json +0 -125
  70. package/examples/example-bar-chart.json +0 -36
  71. package/examples/line-chart.json +0 -34
  72. package/examples/temp-example-config.json +0 -64
  73. package/examples/temp-example-data.json +0 -130
  74. package/src/components/Filters.jsx +0 -126
  75. /package/examples/{age-adjusted-rates.json → feature/__data__/age-adjusted-rates.json} +0 -0
  76. /package/examples/{new-data.csv → feature/__data__/new-data.csv} +0 -0
  77. /package/examples/{planet-example-data-max-increase.json → feature/__data__/planet-example-data-max-increase.json} +0 -0
  78. /package/examples/{Barchart_with_negative.json → feature/bar/Barchart_with_negative.json} +0 -0
  79. /package/examples/{stacked-vertical-bar-example-negative.json → feature/bar/stacked-vertical-bar-example-negative.json} +0 -0
  80. /package/examples/{stacked-vertical-bar-example.json → feature/bar/stacked-vertical-bar-example.json} +0 -0
  81. /package/examples/{box-plot-data.json → feature/boxplot/box-plot-data.json} +0 -0
  82. /package/examples/{newdata.json → feature/boxplot/boxplot-data.json} +0 -0
  83. /package/examples/{line-chart-max-increase.json → feature/line/line-chart-max-increase.json} +0 -0
  84. /package/examples/{paired-bar-data.json → feature/paired-bar/paired-bar-data.json} +0 -0
  85. /package/examples/{paired-bar-formatted.json → feature/paired-bar/paired-bar-formatted.json} +0 -0
  86. /package/examples/{scatterplot-continuous.csv → feature/scatterplot/scatterplot-continuous.csv} +0 -0
  87. /package/examples/{example-sparkline.json → feature/sparkline/example-sparkline.json} +0 -0
  88. /package/examples/{big-small-test-bar.json → feature/tests-big-small/big-small-test-bar.json} +0 -0
  89. /package/examples/{big-small-test-line.json → feature/tests-big-small/big-small-test-line.json} +0 -0
  90. /package/examples/{big-small-test-negative.json → feature/tests-big-small/big-small-test-negative.json} +0 -0
  91. /package/examples/{case-rate-example-data.json → feature/tests-case-rate/case-rate-example-data.json} +0 -0
  92. /package/examples/{covid-example-data-confidence.json → feature/tests-covid/covid-example-data-confidence.json} +0 -0
  93. /package/examples/{covid-example-data.json → feature/tests-covid/covid-example-data.json} +0 -0
  94. /package/examples/{cutoff-example-data.json → feature/tests-cutoff/cutoff-example-data.json} +0 -0
  95. /package/examples/{date-exclusions-data.json → feature/tests-date-exclusions/date-exclusions-data.json} +0 -0
  96. /package/examples/{example-combo-bar-nonnumeric.json → feature/tests-non-numerics/example-combo-bar-nonnumeric.json} +0 -0
  97. /package/examples/{line-chart-nonnumeric.json → feature/tests-non-numerics/line-chart-nonnumeric.json} +0 -0
  98. /package/examples/{planet-example-data-nonnumeric.json → feature/tests-non-numerics/planet-example-data-nonnumeric.json} +0 -0
@@ -0,0 +1,789 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "",
4
+ "showTitle": true,
5
+ "theme": "theme-blue",
6
+ "animate": true,
7
+ "fontSize": "small",
8
+ "lineDatapointStyle": "hover",
9
+ "barHasBorder": "false",
10
+ "isLollipopChart": false,
11
+ "lollipopShape": "circle",
12
+ "lollipopColorStyle": "two-tone",
13
+ "visualizationSubType": "regular",
14
+ "barStyle": "rounded",
15
+ "roundingStyle": "finger",
16
+ "tipRounding": "full",
17
+ "padding": {
18
+ "left": 5,
19
+ "right": 5
20
+ },
21
+ "yAxis": {
22
+ "hideAxis": true,
23
+ "displayNumbersOnBar": true,
24
+ "hideLabel": false,
25
+ "hideTicks": false,
26
+ "size": "20",
27
+ "gridLines": false,
28
+ "enablePadding": false,
29
+ "min": "",
30
+ "max": "",
31
+ "labelColor": "#333",
32
+ "tickLabelColor": "#333",
33
+ "tickColor": "#333",
34
+ "rightHideAxis": true,
35
+ "rightAxisSize": 50,
36
+ "rightLabel": "",
37
+ "rightLabelOffsetSize": 0,
38
+ "rightAxisLabelColor": "#333",
39
+ "rightAxisTickLabelColor": "#333",
40
+ "rightAxisTickColor": "#333",
41
+ "numTicks": "",
42
+ "axisPadding": 0,
43
+ "tickRotation": 0,
44
+ "type": "chart",
45
+ "title": "",
46
+ "showTitle": true,
47
+ "theme": "theme-blue",
48
+ "animate": false,
49
+ "fontSize": "medium",
50
+ "lineDatapointStyle": "hover",
51
+ "barHasBorder": "false",
52
+ "isLollipopChart": false,
53
+ "lollipopShape": "circle",
54
+ "lollipopColorStyle": "two-tone",
55
+ "visualizationSubType": "regular",
56
+ "barStyle": "",
57
+ "roundingStyle": "standard",
58
+ "tipRounding": "top",
59
+ "padding": {
60
+ "left": 5,
61
+ "right": 5
62
+ },
63
+ "yAxis": {
64
+ "hideAxis": false,
65
+ "displayNumbersOnBar": false,
66
+ "hideLabel": false,
67
+ "hideTicks": false,
68
+ "size": 50,
69
+ "gridLines": false,
70
+ "enablePadding": false,
71
+ "min": "",
72
+ "max": "",
73
+ "labelColor": "#333",
74
+ "tickLabelColor": "#333",
75
+ "tickColor": "#333",
76
+ "rightHideAxis": true,
77
+ "rightAxisSize": 50,
78
+ "rightLabel": "",
79
+ "rightLabelOffsetSize": 0,
80
+ "rightAxisLabelColor": "#333",
81
+ "rightAxisTickLabelColor": "#333",
82
+ "rightAxisTickColor": "#333",
83
+ "numTicks": "",
84
+ "axisPadding": 0,
85
+ "tickRotation": 0
86
+ },
87
+ "boxplot": {
88
+ "plots": [],
89
+ "borders": "true",
90
+ "firstQuartilePercentage": 25,
91
+ "thirdQuartilePercentage": 75,
92
+ "boxWidthPercentage": 40,
93
+ "plotOutlierValues": false,
94
+ "plotNonOutlierValues": true,
95
+ "legend": {
96
+ "showHowToReadText": false,
97
+ "howToReadText": ""
98
+ },
99
+ "labels": {
100
+ "q1": "Lower Quartile",
101
+ "q2": "q2",
102
+ "q3": "Upper Quartile",
103
+ "q4": "q4",
104
+ "minimum": "Minimum",
105
+ "maximum": "Maximum",
106
+ "mean": "Mean",
107
+ "median": "Median",
108
+ "sd": "Standard Deviation",
109
+ "iqr": "Interquartile Range",
110
+ "total": "Total",
111
+ "outliers": "Outliers",
112
+ "values": "Values",
113
+ "lowerBounds": "Lower Bounds",
114
+ "upperBounds": "Upper Bounds"
115
+ }
116
+ },
117
+ "topAxis": {
118
+ "hasLine": false
119
+ },
120
+ "isLegendValue": false,
121
+ "barThickness": 0.35,
122
+ "barHeight": 25,
123
+ "barSpace": 15,
124
+ "heights": {
125
+ "vertical": 300,
126
+ "horizontal": 200
127
+ },
128
+ "xAxis": {
129
+ "type": "categorical",
130
+ "showTargetLabel": true,
131
+ "targetLabel": "Target",
132
+ "hideAxis": false,
133
+ "hideLabel": false,
134
+ "hideTicks": false,
135
+ "size": 75,
136
+ "tickRotation": 0,
137
+ "min": "",
138
+ "max": "",
139
+ "labelColor": "#333",
140
+ "tickLabelColor": "#333",
141
+ "tickColor": "#333",
142
+ "numTicks": "",
143
+ "labelOffset": 65,
144
+ "axisPadding": 0,
145
+ "target": 0,
146
+ "dataKey": "CIO"
147
+ },
148
+ "table": {
149
+ "label": "Data Table",
150
+ "expanded": true,
151
+ "limitHeight": false,
152
+ "height": "",
153
+ "caption": "",
154
+ "showDownloadUrl": false,
155
+ "showDataTableLink": true,
156
+ "show": true
157
+ },
158
+ "orientation": "horizontal",
159
+ "legend": {
160
+ "behavior": "isolate",
161
+ "singleRow": false,
162
+ "colorCode": "",
163
+ "reverseLabelOrder": false,
164
+ "description": "",
165
+ "dynamicLegend": false,
166
+ "dynamicLegendDefaultText": "Show All",
167
+ "dynamicLegendItemLimit": 5,
168
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
169
+ "dynamicLegendChartMessage": "Select Options from the Legend"
170
+ },
171
+ "exclusions": {
172
+ "active": false,
173
+ "keys": []
174
+ },
175
+ "palette": "qualitative-bold",
176
+ "isPaletteReversed": false,
177
+ "twoColor": {
178
+ "palette": "monochrome-1",
179
+ "isPaletteReversed": false
180
+ },
181
+ "labels": false,
182
+ "dataFormat": {
183
+ "commas": false,
184
+ "prefix": "",
185
+ "suffix": "",
186
+ "abbreviated": false,
187
+ "bottomSuffix": "",
188
+ "bottomPrefix": "",
189
+ "bottomAbbreviated": false
190
+ },
191
+ "confidenceKeys": {},
192
+ "visual": {
193
+ "border": true,
194
+ "accent": true,
195
+ "background": true
196
+ },
197
+ "filterBehavior": "Filter Change",
198
+ "highlightedBarValues": [],
199
+ "datasets": {},
200
+ "visualizationType": "Bar",
201
+ "data": [
202
+ {
203
+ "Year": "2019",
204
+ "CIO": "NCBDDD",
205
+ "Participation": "30"
206
+ },
207
+ {
208
+ "Year": "2019",
209
+ "CIO": "NCEZID",
210
+ "Participation": "40"
211
+ },
212
+ {
213
+ "Year": "2019",
214
+ "CIO": "OC",
215
+ "Participation": "50"
216
+ },
217
+ {
218
+ "Year": "2019",
219
+ "CIO": "NCIRD",
220
+ "Participation": "60"
221
+ },
222
+ {
223
+ "Year": "2019",
224
+ "CIO": "2018",
225
+ "Participation": "55"
226
+ },
227
+ {
228
+ "Year": "2020",
229
+ "CIO": "NCBDDD",
230
+ "Participation": "30"
231
+ },
232
+ {
233
+ "Year": "2020",
234
+ "CIO": "NCEZID",
235
+ "Participation": "40"
236
+ },
237
+ {
238
+ "Year": "2020",
239
+ "CIO": "OC",
240
+ "Participation": "50"
241
+ },
242
+ {
243
+ "Year": "2020",
244
+ "CIO": "NCIRD",
245
+ "Participation": "60"
246
+ },
247
+ {
248
+ "Year": "2020",
249
+ "CIO": "2019",
250
+ "Participation": "55"
251
+ },
252
+ {
253
+ "Year": "2021",
254
+ "CIO": "NCBDDD",
255
+ "Participation": "30"
256
+ },
257
+ {
258
+ "Year": "2021",
259
+ "CIO": "NCEZID",
260
+ "Participation": "40"
261
+ },
262
+ {
263
+ "Year": "2021",
264
+ "CIO": "OC",
265
+ "Participation": "50"
266
+ },
267
+ {
268
+ "Year": "2021",
269
+ "CIO": "NCIRD",
270
+ "Participation": "60"
271
+ },
272
+ {
273
+ "Year": "2021",
274
+ "CIO": "2020",
275
+ "Participation": "55"
276
+ }
277
+ ],
278
+ "dataFileName": "CIOs_multi.csv",
279
+ "dataFileSourceType": "file",
280
+ "formattedData": [
281
+ {
282
+ "Year": "2019",
283
+ "CIO": "NCBDDD",
284
+ "Participation": "30"
285
+ },
286
+ {
287
+ "Year": "2019",
288
+ "CIO": "NCEZID",
289
+ "Participation": "40"
290
+ },
291
+ {
292
+ "Year": "2019",
293
+ "CIO": "OC",
294
+ "Participation": "50"
295
+ },
296
+ {
297
+ "Year": "2019",
298
+ "CIO": "NCIRD",
299
+ "Participation": "60"
300
+ },
301
+ {
302
+ "Year": "2019",
303
+ "CIO": "2018",
304
+ "Participation": "55"
305
+ },
306
+ {
307
+ "Year": "2020",
308
+ "CIO": "NCBDDD",
309
+ "Participation": "30"
310
+ },
311
+ {
312
+ "Year": "2020",
313
+ "CIO": "NCEZID",
314
+ "Participation": "40"
315
+ },
316
+ {
317
+ "Year": "2020",
318
+ "CIO": "OC",
319
+ "Participation": "50"
320
+ },
321
+ {
322
+ "Year": "2020",
323
+ "CIO": "NCIRD",
324
+ "Participation": "60"
325
+ },
326
+ {
327
+ "Year": "2020",
328
+ "CIO": "2019",
329
+ "Participation": "55"
330
+ },
331
+ {
332
+ "Year": "2021",
333
+ "CIO": "NCBDDD",
334
+ "Participation": "30"
335
+ },
336
+ {
337
+ "Year": "2021",
338
+ "CIO": "NCEZID",
339
+ "Participation": "40"
340
+ },
341
+ {
342
+ "Year": "2021",
343
+ "CIO": "OC",
344
+ "Participation": "50"
345
+ },
346
+ {
347
+ "Year": "2021",
348
+ "CIO": "NCIRD",
349
+ "Participation": "60"
350
+ },
351
+ {
352
+ "Year": "2021",
353
+ "CIO": "2020",
354
+ "Participation": "55"
355
+ }
356
+ ],
357
+ "dataDescription": {
358
+ "horizontal": false,
359
+ "series": false
360
+ },
361
+ "runtime": {
362
+ "seriesLabels": {
363
+ "Participation": "Participation"
364
+ },
365
+ "seriesLabelsAll": [
366
+ "Participation"
367
+ ],
368
+ "originalXAxis": {
369
+ "type": "categorical",
370
+ "showTargetLabel": true,
371
+ "targetLabel": "Target",
372
+ "hideAxis": false,
373
+ "hideLabel": false,
374
+ "hideTicks": false,
375
+ "size": 75,
376
+ "tickRotation": 0,
377
+ "min": "",
378
+ "max": "",
379
+ "labelColor": "#333",
380
+ "tickLabelColor": "#333",
381
+ "tickColor": "#333",
382
+ "numTicks": "",
383
+ "labelOffset": 65,
384
+ "axisPadding": 0,
385
+ "target": 0,
386
+ "dataKey": "CIO"
387
+ },
388
+ "seriesKeys": [
389
+ "Participation"
390
+ ],
391
+ "xAxis": {
392
+ "hideAxis": false,
393
+ "displayNumbersOnBar": false,
394
+ "hideLabel": false,
395
+ "hideTicks": false,
396
+ "size": 50,
397
+ "gridLines": false,
398
+ "enablePadding": false,
399
+ "min": "",
400
+ "max": "",
401
+ "labelColor": "#333",
402
+ "tickLabelColor": "#333",
403
+ "tickColor": "#333",
404
+ "rightHideAxis": true,
405
+ "rightAxisSize": 50,
406
+ "rightLabel": "",
407
+ "rightLabelOffsetSize": 0,
408
+ "rightAxisLabelColor": "#333",
409
+ "rightAxisTickLabelColor": "#333",
410
+ "rightAxisTickColor": "#333",
411
+ "numTicks": "",
412
+ "axisPadding": 0,
413
+ "tickRotation": 0
414
+ },
415
+ "yAxis": {
416
+ "type": "categorical",
417
+ "showTargetLabel": true,
418
+ "targetLabel": "Target",
419
+ "hideAxis": false,
420
+ "hideLabel": false,
421
+ "hideTicks": false,
422
+ "size": 75,
423
+ "tickRotation": 0,
424
+ "min": "",
425
+ "max": "",
426
+ "labelColor": "#333",
427
+ "tickLabelColor": "#333",
428
+ "tickColor": "#333",
429
+ "numTicks": "",
430
+ "labelOffset": 65,
431
+ "axisPadding": 0,
432
+ "target": 0,
433
+ "dataKey": "CIO"
434
+ },
435
+ "horizontal": true,
436
+ "uniqueId": 1682687478394,
437
+ "editorErrorMessage": ""
438
+ },
439
+ "series": [
440
+ {
441
+ "dataKey": "Participation",
442
+ "type": "Bar"
443
+ }
444
+ ],
445
+ "filters": [
446
+ {
447
+ "values": [
448
+ "2019",
449
+ "2020",
450
+ "2021"
451
+ ],
452
+ "active": "2020",
453
+ "filterStyle": "dropdown",
454
+ "columnName": "Year",
455
+ "order": "asc"
456
+ }
457
+ ],
458
+ "labelPlacement": "On Date/Category Axis"
459
+ },
460
+ "boxplot": {
461
+ "plots": [],
462
+ "borders": "true",
463
+ "firstQuartilePercentage": 25,
464
+ "thirdQuartilePercentage": 75,
465
+ "boxWidthPercentage": 40,
466
+ "plotOutlierValues": false,
467
+ "plotNonOutlierValues": true,
468
+ "legend": {
469
+ "showHowToReadText": false,
470
+ "howToReadText": ""
471
+ },
472
+ "labels": {
473
+ "q1": "Lower Quartile",
474
+ "q2": "q2",
475
+ "q3": "Upper Quartile",
476
+ "q4": "q4",
477
+ "minimum": "Minimum",
478
+ "maximum": "Maximum",
479
+ "mean": "Mean",
480
+ "median": "Median",
481
+ "sd": "Standard Deviation",
482
+ "iqr": "Interquartile Range",
483
+ "total": "Total",
484
+ "outliers": "Outliers",
485
+ "values": "Values",
486
+ "lowerBounds": "Lower Bounds",
487
+ "upperBounds": "Upper Bounds"
488
+ }
489
+ },
490
+ "topAxis": {
491
+ "hasLine": false
492
+ },
493
+ "isLegendValue": false,
494
+ "barThickness": 0.35,
495
+ "barHeight": "25",
496
+ "barSpace": "10",
497
+ "heights": {
498
+ "vertical": 300,
499
+ "horizontal": 175
500
+ },
501
+ "xAxis": {
502
+ "type": "categorical",
503
+ "showTargetLabel": true,
504
+ "targetLabel": "Target",
505
+ "hideAxis": false,
506
+ "hideLabel": false,
507
+ "hideTicks": false,
508
+ "size": "100",
509
+ "tickRotation": 0,
510
+ "min": "",
511
+ "max": "100",
512
+ "labelColor": "#333",
513
+ "tickLabelColor": "#333",
514
+ "tickColor": "#333",
515
+ "numTicks": "",
516
+ "labelOffset": 65,
517
+ "axisPadding": 0,
518
+ "target": 0,
519
+ "dataKey": "CIO"
520
+ },
521
+ "table": {
522
+ "label": "Data Table",
523
+ "expanded": true,
524
+ "limitHeight": false,
525
+ "height": "",
526
+ "caption": "",
527
+ "showDownloadUrl": false,
528
+ "showDataTableLink": true,
529
+ "show": true
530
+ },
531
+ "orientation": "horizontal",
532
+ "legend": {
533
+ "behavior": "isolate",
534
+ "singleRow": true,
535
+ "colorCode": "",
536
+ "reverseLabelOrder": false,
537
+ "description": "",
538
+ "dynamicLegend": false,
539
+ "dynamicLegendDefaultText": "Show All",
540
+ "dynamicLegendItemLimit": 5,
541
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
542
+ "dynamicLegendChartMessage": "Select Options from the Legend",
543
+ "hide": false,
544
+ "showLegendValuesTooltip": false,
545
+ "position": "bottom"
546
+ },
547
+ "exclusions": {
548
+ "active": false,
549
+ "keys": []
550
+ },
551
+ "palette": "qualitative-bold",
552
+ "isPaletteReversed": false,
553
+ "twoColor": {
554
+ "palette": "monochrome-1",
555
+ "isPaletteReversed": false
556
+ },
557
+ "labels": false,
558
+ "dataFormat": {
559
+ "commas": false,
560
+ "prefix": "",
561
+ "suffix": "%",
562
+ "abbreviated": false,
563
+ "bottomSuffix": "",
564
+ "bottomPrefix": "",
565
+ "bottomAbbreviated": false
566
+ },
567
+ "confidenceKeys": {},
568
+ "visual": {
569
+ "border": true,
570
+ "accent": true,
571
+ "background": true
572
+ },
573
+ "filterBehavior": "Filter Change",
574
+ "highlightedBarValues": [
575
+ {
576
+ "dataKey": "Participation",
577
+ "value": "2018",
578
+ "legendLabel": "Previous Year Participation"
579
+ },
580
+ {
581
+ "dataKey": "Participation",
582
+ "value": "2019",
583
+ "legendLabel": "Previous Year Participation"
584
+ },
585
+ {
586
+ "dataKey": "Participation",
587
+ "value": "2020",
588
+ "legendLabel": "Previous Year Participation"
589
+ }
590
+ ],
591
+ "datasets": {},
592
+ "visualizationType": "Bar",
593
+ "data": [
594
+ {
595
+ "Year": "2019",
596
+ "CIO": "NCBDDD",
597
+ "Participation": "30"
598
+ },
599
+ {
600
+ "Year": "2019",
601
+ "CIO": "NCEZID",
602
+ "Participation": "40"
603
+ },
604
+ {
605
+ "Year": "2019",
606
+ "CIO": "OC",
607
+ "Participation": "50"
608
+ },
609
+ {
610
+ "Year": "2019",
611
+ "CIO": "NCIRD",
612
+ "Participation": "60"
613
+ },
614
+ {
615
+ "Year": "2019",
616
+ "CIO": "2018",
617
+ "Participation": "55"
618
+ },
619
+ {
620
+ "Year": "2020",
621
+ "CIO": "NCBDDD",
622
+ "Participation": "35"
623
+ },
624
+ {
625
+ "Year": "2020",
626
+ "CIO": "NCEZID",
627
+ "Participation": "46"
628
+ },
629
+ {
630
+ "Year": "2020",
631
+ "CIO": "OC",
632
+ "Participation": "57"
633
+ },
634
+ {
635
+ "Year": "2020",
636
+ "CIO": "NCIRD",
637
+ "Participation": "65"
638
+ },
639
+ {
640
+ "Year": "2020",
641
+ "CIO": "2019",
642
+ "Participation": "60"
643
+ },
644
+ {
645
+ "Year": "2021",
646
+ "CIO": "NCBDDD",
647
+ "Participation": "20"
648
+ },
649
+ {
650
+ "Year": "2021",
651
+ "CIO": "NCEZID",
652
+ "Participation": "80"
653
+ },
654
+ {
655
+ "Year": "2021",
656
+ "CIO": "OC",
657
+ "Participation": "59"
658
+ },
659
+ {
660
+ "Year": "2021",
661
+ "CIO": "NCIRD",
662
+ "Participation": "30"
663
+ },
664
+ {
665
+ "Year": "2021",
666
+ "CIO": "2020",
667
+ "Participation": "75"
668
+ }
669
+ ],
670
+ "dataFileName": "CIOs_multi.csv",
671
+ "dataFileSourceType": "file",
672
+ "formattedData": [
673
+ {
674
+ "Year": "2019",
675
+ "CIO": "NCBDDD",
676
+ "Participation": "30"
677
+ },
678
+ {
679
+ "Year": "2019",
680
+ "CIO": "NCEZID",
681
+ "Participation": "40"
682
+ },
683
+ {
684
+ "Year": "2019",
685
+ "CIO": "OC",
686
+ "Participation": "50"
687
+ },
688
+ {
689
+ "Year": "2019",
690
+ "CIO": "NCIRD",
691
+ "Participation": "60"
692
+ },
693
+ {
694
+ "Year": "2019",
695
+ "CIO": "2018",
696
+ "Participation": "55"
697
+ },
698
+ {
699
+ "Year": "2020",
700
+ "CIO": "NCBDDD",
701
+ "Participation": "35"
702
+ },
703
+ {
704
+ "Year": "2020",
705
+ "CIO": "NCEZID",
706
+ "Participation": "46"
707
+ },
708
+ {
709
+ "Year": "2020",
710
+ "CIO": "OC",
711
+ "Participation": "57"
712
+ },
713
+ {
714
+ "Year": "2020",
715
+ "CIO": "NCIRD",
716
+ "Participation": "65"
717
+ },
718
+ {
719
+ "Year": "2020",
720
+ "CIO": "2019",
721
+ "Participation": "60"
722
+ },
723
+ {
724
+ "Year": "2021",
725
+ "CIO": "NCBDDD",
726
+ "Participation": "20"
727
+ },
728
+ {
729
+ "Year": "2021",
730
+ "CIO": "NCEZID",
731
+ "Participation": "80"
732
+ },
733
+ {
734
+ "Year": "2021",
735
+ "CIO": "OC",
736
+ "Participation": "59"
737
+ },
738
+ {
739
+ "Year": "2021",
740
+ "CIO": "NCIRD",
741
+ "Participation": "30"
742
+ },
743
+ {
744
+ "Year": "2021",
745
+ "CIO": "2020",
746
+ "Participation": "75"
747
+ }
748
+ ],
749
+ "dataDescription": {
750
+ "horizontal": false,
751
+ "series": false
752
+ },
753
+ "series": [
754
+ {
755
+ "dataKey": "Participation",
756
+ "type": "Bar"
757
+ }
758
+ ],
759
+ "filters": [
760
+ {
761
+ "values": [
762
+ "2019",
763
+ "2020",
764
+ "2021"
765
+ ],
766
+ "active": "2019",
767
+ "filterStyle": "dropdown",
768
+ "columnName": "Year",
769
+ "order": "asc"
770
+ }
771
+ ],
772
+ "copyOfHighlightedBarValues": [
773
+ {
774
+ "dataKey": "Participation",
775
+ "value": "2018",
776
+ "legendLabel": "Previous Year Participation"
777
+ },
778
+ {
779
+ "dataKey": "Participation",
780
+ "value": "2019",
781
+ "legendLabel": "Previous Year Participation"
782
+ },
783
+ {
784
+ "dataKey": "Participation",
785
+ "value": "2020",
786
+ "legendLabel": "Previous Year Participation"
787
+ }
788
+ ]
789
+ }