@cdc/dashboard 4.25.10 → 4.26.1

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 (86) hide show
  1. package/Dynamic_Data.md +66 -0
  2. package/dist/{cdcdashboard-fce76882.es.js → cdcdashboard-BnB1QM5d.es.js} +6 -13
  3. package/dist/{cdcdashboard-c55ac1ea.es.js → cdcdashboard-D6CG2-Hb.es.js} +5 -12
  4. package/dist/{cdcdashboard-31a33da1.es.js → cdcdashboard-MXgURbdZ.es.js} +6 -13
  5. package/dist/{cdcdashboard-1a1724a1.es.js → cdcdashboard-dgT_1dIT.es.js} +136 -151
  6. package/dist/cdcdashboard.js +84214 -79641
  7. package/examples/api-dashboard-data.json +272 -0
  8. package/examples/api-dashboard-years.json +11 -0
  9. package/examples/api-geographies-data.json +11 -0
  10. package/examples/api-test/categories.json +18 -0
  11. package/examples/api-test/chart-data.json +602 -0
  12. package/examples/api-test/topics.json +47 -0
  13. package/examples/api-test/years.json +22 -0
  14. package/examples/markup-axis-label.json +4167 -0
  15. package/examples/private/big-dashboard.json +39095 -39077
  16. package/examples/private/cat-y.json +1235 -0
  17. package/examples/private/chronic-dash.json +1584 -0
  18. package/examples/private/clade-2.json +430 -0
  19. package/examples/private/diabetes.json +546 -196
  20. package/examples/private/map-issue.json +2260 -0
  21. package/examples/private/markup-footer/mortality-deaths-footnotes-age.csv +3 -0
  22. package/examples/private/mpinc-state-reports.json +2260 -0
  23. package/examples/private/mpox.json +38128 -0
  24. package/examples/private/nwss/rsv.json +1240 -0
  25. package/examples/private/reset.json +32920 -0
  26. package/examples/private/simple-dash.json +490 -0
  27. package/examples/private/test-dash.json +0 -0
  28. package/examples/private/test123.json +491 -0
  29. package/examples/test-api-filter-reset.json +132 -0
  30. package/examples/test-dashboard-simple.json +503 -0
  31. package/index.html +25 -26
  32. package/package.json +11 -11
  33. package/src/CdcDashboardComponent.tsx +35 -10
  34. package/src/DashboardContext.tsx +3 -1
  35. package/src/_stories/Dashboard.DataSetup.stories.tsx +203 -0
  36. package/src/_stories/Dashboard.stories.tsx +402 -1
  37. package/src/_stories/_mock/custom-order-new-values.json +116 -0
  38. package/src/_stories/_mock/filter-cascade.json +3350 -0
  39. package/src/_stories/_mock/gallery-data-bite-dashboard.json +3500 -0
  40. package/src/_stories/_mock/nested-parent-child-filters.json +392 -0
  41. package/src/_stories/_mock/parent-child-filters.json +233 -0
  42. package/src/components/DashboardFilters/DashboardFilters.tsx +54 -31
  43. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +118 -50
  44. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +96 -108
  45. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +196 -59
  46. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +129 -29
  47. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +62 -3
  48. package/src/components/DataDesignerModal.tsx +18 -6
  49. package/src/components/Header/Header.tsx +53 -21
  50. package/src/components/Toggle/Toggle.tsx +48 -48
  51. package/src/components/VisualizationRow.tsx +73 -6
  52. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -3
  53. package/src/components/Widget/Widget.tsx +1 -1
  54. package/src/data/initial-state.js +1 -0
  55. package/src/helpers/addValuesToDashboardFilters.ts +24 -6
  56. package/src/helpers/apiFilterHelpers.ts +26 -2
  57. package/src/helpers/changeFilterActive.ts +67 -65
  58. package/src/helpers/filterData.ts +52 -7
  59. package/src/helpers/filterResetHelpers.ts +102 -0
  60. package/src/helpers/formatConfigBeforeSave.ts +6 -5
  61. package/src/helpers/getUpdateConfig.ts +91 -91
  62. package/src/helpers/getVizConfig.ts +2 -2
  63. package/src/helpers/loadAPIFilters.ts +109 -99
  64. package/src/helpers/tests/filterResetHelpers.test.ts +532 -0
  65. package/src/helpers/tests/updatesChildFilters.test.ts +53 -22
  66. package/src/helpers/updateChildFilters.ts +50 -27
  67. package/src/index.tsx +1 -0
  68. package/src/scss/editor-panel.scss +3 -431
  69. package/src/scss/main.scss +142 -25
  70. package/src/store/errorMessage/errorMessage.reducer.ts +1 -1
  71. package/src/test/CdcDashboard.test.jsx +9 -4
  72. package/src/types/Dashboard.ts +1 -0
  73. package/src/types/DashboardFilters.ts +9 -8
  74. package/src/types/FilterStyles.ts +8 -7
  75. package/src/types/SharedFilter.ts +13 -0
  76. package/LICENSE +0 -201
  77. package/examples/private/DEV-11072.json +0 -7591
  78. package/examples/private/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv +0 -14041
  79. package/examples/private/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv +0 -14041
  80. package/examples/private/burden_toolkit_mortality_qaly_data.csv +0 -18721
  81. package/examples/private/burden_toolkit_mortality_yll_data.csv +0 -18721
  82. package/examples/private/pedro.json +0 -1
  83. package/src/helpers/getAutoLoadVisualization.ts +0 -11
  84. package/src/scss/mixins.scss +0 -47
  85. package/src/scss/variables.scss +0 -5
  86. /package/dist/{cdcdashboard-548642e6.es.js → cdcdashboard-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,1584 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "sharedFilters": [
5
+ {
6
+ "key": "Class",
7
+ "showDropdown": true,
8
+ "type": "urlfilter",
9
+ "filterBy": "",
10
+ "tier": 1,
11
+ "apiFilter": {
12
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Class,Class_DisplayOrder&$order=Class_DisplayOrder",
13
+ "valueSelector": "Class",
14
+ "textSelector": ""
15
+ },
16
+ "usedBy": []
17
+ },
18
+ {
19
+ "key": "Topic",
20
+ "showDropdown": true,
21
+ "type": "urlfilter",
22
+ "apiFilter": {
23
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Topic,Topic_DisplayOrder&$order=Topic_DisplayOrder",
24
+ "valueSelector": "Topic",
25
+ "textSelector": ""
26
+ },
27
+ "tier": 2,
28
+ "parents": [
29
+ "Class"
30
+ ]
31
+ },
32
+ {
33
+ "key": "Year",
34
+ "showDropdown": true,
35
+ "type": "urlfilter",
36
+ "apiFilter": {
37
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Year&$order=Year%20Desc",
38
+ "valueSelector": "Year",
39
+ "textSelector": ""
40
+ },
41
+ "parents": [
42
+ "Class",
43
+ "Topic"
44
+ ],
45
+ "tier": 2
46
+ },
47
+ {
48
+ "key": "Question",
49
+ "showDropdown": true,
50
+ "type": "urlfilter",
51
+ "apiFilter": {
52
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Question,Question_Code&$order=Question_Code",
53
+ "valueSelector": "Question_Code",
54
+ "textSelector": "Question"
55
+ },
56
+ "parents": [
57
+ "Class",
58
+ "Topic",
59
+ "Year"
60
+ ],
61
+ "tier": 2,
62
+ "usedBy": []
63
+ },
64
+ {
65
+ "key": "View By",
66
+ "showDropdown": true,
67
+ "type": "urlfilter",
68
+ "filterBy": "",
69
+ "apiFilter": {
70
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder",
71
+ "valueSelector": "Category",
72
+ "textSelector": ""
73
+ },
74
+ "tier": 1,
75
+ "parents": [
76
+ "Class",
77
+ "Topic",
78
+ "Year",
79
+ "Question"
80
+ ],
81
+ "usedBy": [
82
+ "map1725917896547",
83
+ "chart1725918024864",
84
+ "table1725918028606",
85
+ "footnotes1734535863833"
86
+ ],
87
+ "orderedValues": []
88
+ },
89
+ {
90
+ "key": "Data Type",
91
+ "showDropdown": true,
92
+ "type": "urlfilter",
93
+ "apiFilter": {
94
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Data_Type&$order=Data_Type%20Desc",
95
+ "valueSelector": "Data_Type",
96
+ "textSelector": ""
97
+ },
98
+ "parents": [
99
+ "Class",
100
+ "Topic",
101
+ "Year",
102
+ "Question",
103
+ "View By"
104
+ ],
105
+ "tier": 2
106
+ },
107
+ {
108
+ "key": "Dataset",
109
+ "showDropdown": true,
110
+ "type": "urlfilter",
111
+ "apiFilter": {
112
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Dataset&$order=Dataset%20Desc",
113
+ "valueSelector": "Dataset",
114
+ "textSelector": ""
115
+ },
116
+ "parents": [
117
+ "Class",
118
+ "Topic",
119
+ "Year",
120
+ "Question",
121
+ "View By",
122
+ "Data Type"
123
+ ],
124
+ "tier": 2
125
+ }
126
+ ]
127
+ },
128
+ "rows": [
129
+ {
130
+ "columns": [
131
+ {
132
+ "width": 12,
133
+ "widget": "dashboardFilters1725917968954"
134
+ }
135
+ ],
136
+ "uuid": 1725917970561,
137
+ "dataDescription": {},
138
+ "dataKey": ""
139
+ },
140
+ {
141
+ "columns": [
142
+ {
143
+ "width": 12,
144
+ "widget": "markup-include1727985995619"
145
+ }
146
+ ],
147
+ "uuid": 1727986044905
148
+ },
149
+ {
150
+ "columns": [
151
+ {
152
+ "width": 12,
153
+ "widget": "markup-include1738165566534"
154
+ }
155
+ ],
156
+ "uuid": 1738165560704
157
+ },
158
+ {
159
+ "columns": [
160
+ {
161
+ "width": 12,
162
+ "widget": "dashboardFilters1725972557434"
163
+ }
164
+ ],
165
+ "uuid": 1738165560704
166
+ },
167
+ {
168
+ "columns": [
169
+ {
170
+ "width": 12,
171
+ "widget": "map1725917896547"
172
+ },
173
+ {
174
+ "width": 12,
175
+ "widget": "chart1725918024864"
176
+ },
177
+ {
178
+ "width": 12,
179
+ "widget": "table1725918028606"
180
+ }
181
+ ],
182
+ "toggle": true,
183
+ "uuid": 1738165558702
184
+ },
185
+ {
186
+ "columns": [
187
+ {
188
+ "width": 12,
189
+ "widget": "markup-include1731457764699"
190
+ }
191
+ ],
192
+ "uuid": 1738165555862
193
+ },
194
+ {
195
+ "columns": [
196
+ {
197
+ "width": 12,
198
+ "widget": "markup-include1733869550808"
199
+ }
200
+ ],
201
+ "uuid": 1738165553631
202
+ },
203
+ {
204
+ "columns": [
205
+ {
206
+ "width": 12,
207
+ "widget": "markup-include1733869622293"
208
+ }
209
+ ],
210
+ "uuid": 1738165551347
211
+ },
212
+ {
213
+ "columns": [
214
+ {
215
+ "width": 12,
216
+ "widget": "markup-include1733869573450"
217
+ }
218
+ ],
219
+ "uuid": 1738165550028
220
+ }
221
+ ],
222
+ "visualizations": {
223
+ "map1725917896547": {
224
+ "annotations": [],
225
+ "general": {
226
+ "navigationTarget": "_self",
227
+ "annotationDropdownText": "Annotations",
228
+ "geoBorderColor": "darkGray",
229
+ "headerColor": "theme-blue",
230
+ "title": "Explore by Topic Map",
231
+ "showTitle": false,
232
+ "showSidebar": true,
233
+ "showDownloadMediaButton": false,
234
+ "displayAsHex": false,
235
+ "displayStateLabels": true,
236
+ "territoriesAlwaysShow": false,
237
+ "language": "en",
238
+ "geoType": "us",
239
+ "geoLabelOverride": "",
240
+ "hasRegions": false,
241
+ "fullBorder": false,
242
+ "type": "data",
243
+ "convertFipsCodes": true,
244
+ "palette": {
245
+ "isReversed": false,
246
+ "name": "sequential_yellow_orange_brown",
247
+ "version": "1.0"
248
+ },
249
+ "allowMapZoom": true,
250
+ "hideGeoColumnInTooltip": true,
251
+ "hidePrimaryColumnInTooltip": false,
252
+ "expandDataTable": false,
253
+ "subtext": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
254
+ "footnotes": "<p>The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria.</p>\n\n<p class=\"mt-2\">MMSA data belonging to territories are not displayed on the map. Please visit the Chart or Table view for territories MMSA data.</p>",
255
+ "showDownloadImgButton": true,
256
+ "equalNumberOptIn": true,
257
+ "statesPicked": [
258
+ {
259
+ "fipsCode": "01",
260
+ "stateName": "Alabama"
261
+ }
262
+ ],
263
+ "noDataMessage": "No State Selected"
264
+ },
265
+ "type": "map",
266
+ "columns": {
267
+ "geo": {
268
+ "name": "State",
269
+ "label": "Location",
270
+ "tooltip": false,
271
+ "dataTable": true
272
+ },
273
+ "primary": {
274
+ "dataTable": false,
275
+ "tooltip": true,
276
+ "prefix": "",
277
+ "suffix": "%",
278
+ "name": "Percentage",
279
+ "label": "Percentage",
280
+ "roundToPlace": "1"
281
+ },
282
+ "navigate": {
283
+ "name": ""
284
+ },
285
+ "latitude": {
286
+ "name": "GeoLocation_Lat"
287
+ },
288
+ "longitude": {
289
+ "name": "GeoLocation_Long"
290
+ },
291
+ "additionalColumn1": {
292
+ "label": "95% CI",
293
+ "dataTable": false,
294
+ "tooltips": false,
295
+ "prefix": "",
296
+ "suffix": "",
297
+ "name": "95%_CI",
298
+ "tooltip": true
299
+ },
300
+ "additionalColumn2": {
301
+ "label": "n",
302
+ "dataTable": false,
303
+ "tooltips": false,
304
+ "prefix": "",
305
+ "suffix": "",
306
+ "name": "n",
307
+ "useCommas": true,
308
+ "tooltip": true
309
+ }
310
+ },
311
+ "legend": {
312
+ "descriptions": {},
313
+ "specialClasses": [],
314
+ "unified": false,
315
+ "singleColumn": false,
316
+ "singleRow": true,
317
+ "verticalSorted": false,
318
+ "showSpecialClassesLast": false,
319
+ "dynamicDescription": false,
320
+ "type": "equalnumber",
321
+ "numberOfItems": 4,
322
+ "position": "bottom",
323
+ "title": "Percentage",
324
+ "style": "boxes",
325
+ "subStyle": "linear blocks",
326
+ "tickRotation": "",
327
+ "singleColumnLegend": false,
328
+ "hideBorder": false,
329
+ "groupBy": "",
330
+ "categoryValuesOrder": [
331
+ "40.7000-48.3000"
332
+ ]
333
+ },
334
+ "filters": [
335
+ {
336
+ "order": "column",
337
+ "label": "View By Subcategory",
338
+ "columnName": "Subcategory_Filter",
339
+ "filterStyle": "dropdown",
340
+ "id": 1736207087258,
341
+ "orderColumn": "Subcategory_DisplayOrder"
342
+ },
343
+ {
344
+ "filterStyle": "dropdown",
345
+ "id": 1736440209639,
346
+ "showDropdown": true,
347
+ "columnName": "Response_Filter",
348
+ "label": "Response",
349
+ "parents": [
350
+ 1736207087258
351
+ ],
352
+ "order": "column",
353
+ "orderColumn": "Response_DisplayOrder"
354
+ }
355
+ ],
356
+ "table": {
357
+ "wrapColumns": false,
358
+ "label": "Data Table",
359
+ "expanded": false,
360
+ "limitHeight": false,
361
+ "height": "",
362
+ "caption": "",
363
+ "showDownloadUrl": false,
364
+ "showDataTableLink": false,
365
+ "showDownloadLinkBelow": false,
366
+ "showFullGeoNameInCSV": false,
367
+ "forceDisplay": false,
368
+ "download": true,
369
+ "indexLabel": "",
370
+ "cellMinWidth": "0",
371
+ "sharedFilterColumns": [
372
+ "Class",
373
+ "Topic",
374
+ "Year",
375
+ "Question",
376
+ "Category",
377
+ "Data_Type",
378
+ "Dataset"
379
+ ]
380
+ },
381
+ "tooltips": {
382
+ "appearanceType": "hover",
383
+ "linkLabel": "Learn More",
384
+ "capitalizeLabels": true,
385
+ "opacity": 90
386
+ },
387
+ "visual": {
388
+ "minBubbleSize": 1,
389
+ "maxBubbleSize": 20,
390
+ "extraBubbleBorder": false,
391
+ "cityStyle": "circle",
392
+ "cityStyleLabel": "",
393
+ "showBubbleZeros": false,
394
+ "additionalCityStyles": [],
395
+ "geoCodeCircleSize": 8
396
+ },
397
+ "mapPosition": {
398
+ "coordinates": [
399
+ 0,
400
+ 30
401
+ ],
402
+ "zoom": 1
403
+ },
404
+ "map": {
405
+ "layers": [],
406
+ "patterns": []
407
+ },
408
+ "hexMap": {
409
+ "type": "",
410
+ "shapeGroups": [
411
+ {
412
+ "legendTitle": "",
413
+ "legendDescription": "",
414
+ "items": [
415
+ {
416
+ "key": "",
417
+ "shape": "Arrow Up",
418
+ "column": "",
419
+ "operator": "=",
420
+ "value": ""
421
+ }
422
+ ]
423
+ }
424
+ ]
425
+ },
426
+ "filterBehavior": "Filter Change",
427
+ "filterIntro": "",
428
+ "openModal": true,
429
+ "uid": "map1725917896547",
430
+ "dataDescription": {
431
+ "horizontal": false,
432
+ "series": false
433
+ },
434
+ "dataKey": "Explore by Topic Map",
435
+ "version": "4.25.1",
436
+ "migrations": {
437
+ "addColorMigration": true
438
+ },
439
+ "editor": {
440
+ "activeFilterValueForDescription": [
441
+ 0,
442
+ 0
443
+ ]
444
+ },
445
+ "footnotes": {
446
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
447
+ "dynamicFootnotes": {
448
+ "textColumn": "Footnotes",
449
+ "symbolColumn": "Footnotes_Symbol"
450
+ }
451
+ }
452
+ },
453
+ "dashboardFilters1725917968954": {
454
+ "filters": [],
455
+ "filterBehavior": "Apply Button",
456
+ "newViz": true,
457
+ "openModal": true,
458
+ "uid": "dashboardFilters1725917968954",
459
+ "type": "dashboardFilters",
460
+ "sharedFilterIndexes": [
461
+ 0,
462
+ 1,
463
+ 2,
464
+ 3
465
+ ],
466
+ "visualizationType": "dashboardFilters",
467
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic",
468
+ "dataDescription": {
469
+ "horizontal": false,
470
+ "series": false
471
+ },
472
+ "autoLoad": false,
473
+ "applyFiltersButtonText": "View Results"
474
+ },
475
+ "chart1725918024864": {
476
+ "annotations": [],
477
+ "type": "chart",
478
+ "debugSvg": false,
479
+ "chartMessage": {
480
+ "noData": "No Data Available"
481
+ },
482
+ "title": "Subcategories by State Bar Chart",
483
+ "showTitle": false,
484
+ "showDownloadMediaButton": false,
485
+ "theme": "theme-blue",
486
+ "animate": false,
487
+ "fontSize": "medium",
488
+ "lineDatapointStyle": "hover",
489
+ "lineDatapointColor": "Same as Line",
490
+ "barHasBorder": "false",
491
+ "isLollipopChart": false,
492
+ "lollipopShape": "circle",
493
+ "lollipopColorStyle": "two-tone",
494
+ "visualizationSubType": "regular",
495
+ "barStyle": "flat",
496
+ "roundingStyle": "standard",
497
+ "tipRounding": "top",
498
+ "isResponsiveTicks": true,
499
+ "general": {
500
+ "annotationDropdownText": "Annotations",
501
+ "showMissingDataLabel": true,
502
+ "showSuppressedSymbol": true,
503
+ "showZeroValueData": true,
504
+ "hideNullValue": true,
505
+ "palette": {
506
+ "name": "qualitative_bold",
507
+ "version": "1.0"
508
+ }
509
+ },
510
+ "padding": {
511
+ "left": 5,
512
+ "right": 5
513
+ },
514
+ "preliminaryData": [],
515
+ "yAxis": {
516
+ "hideAxis": false,
517
+ "displayNumbersOnBar": false,
518
+ "hideLabel": false,
519
+ "hideTicks": false,
520
+ "size": 50,
521
+ "gridLines": false,
522
+ "enablePadding": true,
523
+ "min": "",
524
+ "max": "",
525
+ "labelColor": "#1c1d1f",
526
+ "tickLabelColor": "#1c1d1f",
527
+ "tickColor": "#1c1d1f",
528
+ "rightHideAxis": true,
529
+ "rightAxisSize": 0,
530
+ "rightLabel": "",
531
+ "rightLabelOffsetSize": 0,
532
+ "rightAxisLabelColor": "#1c1d1f",
533
+ "rightAxisTickLabelColor": "#1c1d1f",
534
+ "rightAxisTickColor": "#1c1d1f",
535
+ "numTicks": "",
536
+ "axisPadding": 0,
537
+ "scalePadding": 10,
538
+ "tickRotation": 0,
539
+ "anchors": [],
540
+ "shoMissingDataLabel": true,
541
+ "showMissingDataLine": true,
542
+ "categories": [],
543
+ "labelPlacement": "Below Bar",
544
+ "label": "Percentage"
545
+ },
546
+ "boxplot": {
547
+ "plots": [],
548
+ "borders": "true",
549
+ "plotOutlierValues": false,
550
+ "plotNonOutlierValues": true,
551
+ "labels": {
552
+ "q1": "Lower Quartile",
553
+ "q2": "q2",
554
+ "q3": "Upper Quartile",
555
+ "q4": "q4",
556
+ "minimum": "Minimum",
557
+ "maximum": "Maximum",
558
+ "mean": "Mean",
559
+ "median": "Median",
560
+ "sd": "Standard Deviation",
561
+ "iqr": "Interquartile Range",
562
+ "total": "Total",
563
+ "outliers": "Outliers",
564
+ "values": "Values",
565
+ "lowerBounds": "Lower Bounds",
566
+ "upperBounds": "Upper Bounds",
567
+ "count": "Count"
568
+ },
569
+ "firstQuartilePercentage": 25,
570
+ "thirdQuartilePercentage": 75,
571
+ "boxWidthPercentage": 40,
572
+ "legend": {
573
+ "showHowToReadText": false,
574
+ "howToReadText": ""
575
+ }
576
+ },
577
+ "topAxis": {
578
+ "hasLine": false
579
+ },
580
+ "isLegendValue": true,
581
+ "barThickness": 0.35,
582
+ "barHeight": 25,
583
+ "barSpace": 15,
584
+ "heights": {
585
+ "vertical": 300,
586
+ "horizontal": 12303.199999999999
587
+ },
588
+ "xAxis": {
589
+ "sortDates": false,
590
+ "anchors": [],
591
+ "type": "categorical",
592
+ "showTargetLabel": true,
593
+ "targetLabel": "Target",
594
+ "hideAxis": false,
595
+ "hideLabel": false,
596
+ "hideTicks": false,
597
+ "size": "80",
598
+ "tickRotation": "30",
599
+ "min": "0",
600
+ "max": "",
601
+ "labelColor": "#1c1d1f",
602
+ "tickLabelColor": "#1c1d1f",
603
+ "tickColor": "#1c1d1f",
604
+ "numTicks": "",
605
+ "labelOffset": 0,
606
+ "axisPadding": 200,
607
+ "target": 0,
608
+ "maxTickRotation": "30",
609
+ "padding": 5,
610
+ "showYearsOnce": false,
611
+ "sortByRecentDate": false,
612
+ "dataKey": "State",
613
+ "axisBBox": 50.62351989746094,
614
+ "tickWidthMax": 48,
615
+ "label": "State or MMSAs",
616
+ "manual": false
617
+ },
618
+ "table": {
619
+ "label": "Data Table",
620
+ "expanded": true,
621
+ "limitHeight": false,
622
+ "height": "",
623
+ "caption": "",
624
+ "showDownloadUrl": false,
625
+ "showDataTableLink": false,
626
+ "showDownloadLinkBelow": false,
627
+ "indexLabel": "",
628
+ "download": true,
629
+ "showVertical": false,
630
+ "dateDisplayFormat": "",
631
+ "showMissingDataLabel": true,
632
+ "showSuppressedSymbol": true,
633
+ "show": false,
634
+ "showDownloadImgButton": true
635
+ },
636
+ "orientation": "horizontal",
637
+ "columns": {
638
+ "95%_CI": {
639
+ "label": "95% CI",
640
+ "dataTable": false,
641
+ "tooltips": true,
642
+ "prefix": "",
643
+ "suffix": "",
644
+ "forestPlot": false,
645
+ "startingPoint": "0",
646
+ "forestPlotAlignRight": false,
647
+ "roundToPlace": 0,
648
+ "commas": false,
649
+ "showInViz": false,
650
+ "forestPlotStartingPoint": 0,
651
+ "name": "95%_CI",
652
+ "series": ""
653
+ },
654
+ "n": {
655
+ "label": "n",
656
+ "dataTable": false,
657
+ "tooltips": true,
658
+ "prefix": "",
659
+ "suffix": "",
660
+ "forestPlot": false,
661
+ "startingPoint": "0",
662
+ "forestPlotAlignRight": false,
663
+ "roundToPlace": 0,
664
+ "commas": true,
665
+ "showInViz": false,
666
+ "forestPlotStartingPoint": 0,
667
+ "name": "n",
668
+ "series": ""
669
+ }
670
+ },
671
+ "legend": {
672
+ "hide": false,
673
+ "behavior": "highlight",
674
+ "axisAlign": true,
675
+ "singleRow": true,
676
+ "colorCode": "",
677
+ "reverseLabelOrder": false,
678
+ "description": "",
679
+ "dynamicLegend": false,
680
+ "dynamicLegendDefaultText": "Show All",
681
+ "dynamicLegendItemLimit": 5,
682
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
683
+ "dynamicLegendChartMessage": "Select Options from the Legend",
684
+ "label": "Subcategory",
685
+ "lineMode": false,
686
+ "verticalSorted": true,
687
+ "highlightOnHover": false,
688
+ "hideSuppressedLabels": false,
689
+ "hideSuppressionLink": false,
690
+ "seriesHighlight": [],
691
+ "style": "circles",
692
+ "subStyle": "linear blocks",
693
+ "shape": "circle",
694
+ "tickRotation": "",
695
+ "hideBorder": {
696
+ "side": false,
697
+ "topBottom": false
698
+ },
699
+ "position": "right",
700
+ "unified": true
701
+ },
702
+ "brush": {
703
+ "height": 25,
704
+ "active": false
705
+ },
706
+ "exclusions": {
707
+ "active": false,
708
+ "keys": []
709
+ },
710
+ "isPaletteReversed": false,
711
+ "twoColor": {
712
+ "palette": "monochrome-1",
713
+ "isPaletteReversed": false
714
+ },
715
+ "labels": false,
716
+ "dataFormat": {
717
+ "commas": false,
718
+ "prefix": "",
719
+ "suffix": "%",
720
+ "abbreviated": false,
721
+ "bottomSuffix": "",
722
+ "bottomPrefix": "",
723
+ "bottomAbbreviated": false,
724
+ "roundTo": "1"
725
+ },
726
+ "confidenceKeys": {
727
+ "upper": "",
728
+ "lower": ""
729
+ },
730
+ "visual": {
731
+ "border": true,
732
+ "accent": true,
733
+ "background": true,
734
+ "verticalHoverLine": false,
735
+ "horizontalHoverLine": false,
736
+ "lineDatapointSymbol": "none",
737
+ "maximumShapeAmount": 7
738
+ },
739
+ "useLogScale": false,
740
+ "filterBehavior": "Filter Change",
741
+ "highlightedBarValues": [],
742
+ "series": [
743
+ {
744
+ "dataKey": "Percentage",
745
+ "type": "Bar",
746
+ "axis": "Left",
747
+ "tooltip": true,
748
+ "dynamicCategory": "Series",
749
+ "confidenceIntervals": [
750
+ {
751
+ "low": "Low_CI",
752
+ "high": "High_CI",
753
+ "showInTooltip": true
754
+ }
755
+ ]
756
+ }
757
+ ],
758
+ "tooltips": {
759
+ "opacity": 90,
760
+ "singleSeries": true,
761
+ "dateDisplayFormat": ""
762
+ },
763
+ "forestPlot": {
764
+ "startAt": 0,
765
+ "colors": {
766
+ "line": "",
767
+ "shape": ""
768
+ },
769
+ "lineOfNoEffect": {
770
+ "show": true
771
+ },
772
+ "type": "",
773
+ "pooledResult": {
774
+ "diamondHeight": 5,
775
+ "column": ""
776
+ },
777
+ "estimateField": "",
778
+ "estimateRadius": "",
779
+ "shape": "square",
780
+ "rowHeight": 20,
781
+ "description": {
782
+ "show": true,
783
+ "text": "description",
784
+ "location": 0
785
+ },
786
+ "result": {
787
+ "show": true,
788
+ "text": "result",
789
+ "location": 100
790
+ },
791
+ "radius": {
792
+ "min": 2,
793
+ "max": 10,
794
+ "scalingColumn": ""
795
+ },
796
+ "regression": {
797
+ "lower": 0,
798
+ "upper": 0,
799
+ "estimateField": 0
800
+ },
801
+ "leftWidthOffset": 0,
802
+ "rightWidthOffset": 0,
803
+ "showZeroLine": false,
804
+ "leftLabel": "",
805
+ "rightLabel": ""
806
+ },
807
+ "area": {
808
+ "isStacked": false
809
+ },
810
+ "sankey": {
811
+ "title": {
812
+ "defaultColor": "black"
813
+ },
814
+ "iterations": 1,
815
+ "rxValue": 0.9,
816
+ "overallSize": {
817
+ "width": 900,
818
+ "height": 700
819
+ },
820
+ "margin": {
821
+ "margin_y": 25,
822
+ "margin_x": 0
823
+ },
824
+ "nodeSize": {
825
+ "nodeWidth": 26,
826
+ "nodeHeight": 40
827
+ },
828
+ "nodePadding": 55,
829
+ "nodeFontColor": "black",
830
+ "nodeColor": {
831
+ "default": "#ff8500",
832
+ "inactive": "#808080"
833
+ },
834
+ "linkColor": {
835
+ "default": "#ffc900",
836
+ "inactive": "#D3D3D3"
837
+ },
838
+ "opacity": {
839
+ "nodeOpacityDefault": 1,
840
+ "nodeOpacityInactive": 0.1,
841
+ "LinkOpacityDefault": 1,
842
+ "LinkOpacityInactive": 0.1
843
+ },
844
+ "storyNodeFontColor": "#006778",
845
+ "storyNodeText": [],
846
+ "nodeValueStyle": {
847
+ "textBefore": "(",
848
+ "textAfter": ")"
849
+ },
850
+ "data": []
851
+ },
852
+ "filters": [
853
+ {
854
+ "filterStyle": "dropdown",
855
+ "id": 1732225646634,
856
+ "showDropdown": true,
857
+ "columnName": "Subcategory_Filter",
858
+ "label": "View By Subcategory",
859
+ "order": "column",
860
+ "orderColumn": "Subcategory_DisplayOrder",
861
+ "parents": []
862
+ },
863
+ {
864
+ "filterStyle": "dropdown",
865
+ "id": 1736439759754,
866
+ "showDropdown": true,
867
+ "columnName": "Response_Filter",
868
+ "label": "Response",
869
+ "parents": [
870
+ 1732225646634,
871
+ 1736439444438
872
+ ],
873
+ "order": "column",
874
+ "orderColumn": "Response_DisplayOrder"
875
+ }
876
+ ],
877
+ "openModal": true,
878
+ "uid": "chart1725918024864",
879
+ "visualizationType": "Bar",
880
+ "dataDescription": {
881
+ "horizontal": false,
882
+ "series": false
883
+ },
884
+ "dataKey": "Explore by Topic Chart and Table",
885
+ "version": "4.25.1",
886
+ "dynamicMarginTop": 0,
887
+ "description": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
888
+ "footnotes": {
889
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
890
+ "dynamicFootnotes": {
891
+ "textColumn": "Footnotes",
892
+ "symbolColumn": "Footnotes_Symbol"
893
+ }
894
+ },
895
+ "migrations": {
896
+ "addColorMigration": true
897
+ },
898
+ "legacyFootnotes": ""
899
+ },
900
+ "table1725918028606": {
901
+ "filters": [
902
+ {
903
+ "filterStyle": "dropdown",
904
+ "id": 1732226296241,
905
+ "showDropdown": true,
906
+ "columnName": "Subcategory_Filter",
907
+ "label": "View By Subcategory",
908
+ "order": "column",
909
+ "orderColumn": "Subcategory_DisplayOrder"
910
+ },
911
+ {
912
+ "filterStyle": "dropdown",
913
+ "id": 1736440617623,
914
+ "showDropdown": true,
915
+ "columnName": "Response_Filter",
916
+ "label": "Response",
917
+ "order": "column",
918
+ "parents": [
919
+ 1732226296241,
920
+ 1736440597068
921
+ ],
922
+ "orderColumn": "Response_DisplayOrder"
923
+ }
924
+ ],
925
+ "filterBehavior": "Filter Change",
926
+ "newViz": false,
927
+ "openModal": true,
928
+ "uid": "table1725918028606",
929
+ "type": "table",
930
+ "table": {
931
+ "label": "Data Table",
932
+ "show": true,
933
+ "showDownloadUrl": false,
934
+ "showVertical": true,
935
+ "expanded": true,
936
+ "collapsible": false,
937
+ "showDownloadLinkBelow": false,
938
+ "groupBy": "State",
939
+ "pivot": {
940
+ "columnName": "Category_Pivot_Display",
941
+ "valueColumns": [
942
+ "Series"
943
+ ]
944
+ },
945
+ "limitHeight": true,
946
+ "height": "1252",
947
+ "download": false
948
+ },
949
+ "columns": {
950
+ "Category": {
951
+ "name": "Category",
952
+ "dataTable": false,
953
+ "label": "View By",
954
+ "order": 1
955
+ },
956
+ "Class": {
957
+ "name": "Class",
958
+ "dataTable": false
959
+ },
960
+ "DataSource": {
961
+ "name": "DataSource",
962
+ "dataTable": false
963
+ },
964
+ "Data_Type": {
965
+ "name": "Data_Type",
966
+ "dataTable": false
967
+ },
968
+ "Dataset": {
969
+ "name": "Dataset",
970
+ "dataTable": false
971
+ },
972
+ "Footnotes": {
973
+ "name": "Footnotes",
974
+ "dataTable": false
975
+ },
976
+ "GeoLocation_Lat": {
977
+ "name": "GeoLocation_Lat",
978
+ "dataTable": false
979
+ },
980
+ "GeoLocation_Long": {
981
+ "name": "GeoLocation_Long",
982
+ "dataTable": false
983
+ },
984
+ "High_CI": {
985
+ "name": "High_CI",
986
+ "dataTable": false
987
+ },
988
+ "Low_CI": {
989
+ "name": "Low_CI",
990
+ "dataTable": false
991
+ },
992
+ "Question": {
993
+ "name": "Question",
994
+ "dataTable": false
995
+ },
996
+ "Response": {
997
+ "name": "Response",
998
+ "dataTable": false
999
+ },
1000
+ "State_Abbr": {
1001
+ "name": "State_Abbr",
1002
+ "dataTable": false
1003
+ },
1004
+ "Subcategory": {
1005
+ "name": "Subcategory",
1006
+ "dataTable": false
1007
+ },
1008
+ "Subcategory_Filter": {
1009
+ "name": "Subcategory_Filter",
1010
+ "dataTable": false
1011
+ },
1012
+ "Topic": {
1013
+ "name": "Topic",
1014
+ "dataTable": false
1015
+ },
1016
+ "createdon": {
1017
+ "name": "createdon",
1018
+ "dataTable": true
1019
+ },
1020
+ "Year": {
1021
+ "name": "Year",
1022
+ "dataTable": false
1023
+ },
1024
+ "n": {
1025
+ "label": "n",
1026
+ "dataTable": true,
1027
+ "tooltips": false,
1028
+ "prefix": "",
1029
+ "suffix": "",
1030
+ "forestPlot": false,
1031
+ "startingPoint": "0",
1032
+ "forestPlotAlignRight": false,
1033
+ "roundToPlace": 0,
1034
+ "commas": true,
1035
+ "showInViz": false,
1036
+ "forestPlotStartingPoint": 0,
1037
+ "name": "n",
1038
+ "order": 4
1039
+ },
1040
+ "Percentage": {
1041
+ "label": "Percentage",
1042
+ "dataTable": false,
1043
+ "tooltips": false,
1044
+ "prefix": "",
1045
+ "suffix": "%",
1046
+ "forestPlot": false,
1047
+ "startingPoint": "0",
1048
+ "forestPlotAlignRight": false,
1049
+ "roundToPlace": "1",
1050
+ "commas": false,
1051
+ "showInViz": false,
1052
+ "forestPlotStartingPoint": 0,
1053
+ "name": "Percentage",
1054
+ "order": 3
1055
+ },
1056
+ "95%_CI": {
1057
+ "label": "95% CI",
1058
+ "dataTable": true,
1059
+ "tooltips": false,
1060
+ "prefix": "",
1061
+ "suffix": "",
1062
+ "forestPlot": false,
1063
+ "startingPoint": "0",
1064
+ "forestPlotAlignRight": false,
1065
+ "roundToPlace": 0,
1066
+ "commas": false,
1067
+ "showInViz": false,
1068
+ "forestPlotStartingPoint": 0,
1069
+ "name": "95%_CI",
1070
+ "order": 6
1071
+ },
1072
+ "Category_DisplayOrder": {
1073
+ "name": "Category_DisplayOrder",
1074
+ "dataTable": false
1075
+ },
1076
+ "LocationCategory": {
1077
+ "name": "LocationCategory",
1078
+ "dataTable": false
1079
+ },
1080
+ "Subcategory_DisplayOrder": {
1081
+ "name": "Subcategory_DisplayOrder",
1082
+ "dataTable": false
1083
+ },
1084
+ "Response_Filter": {
1085
+ "label": "Response_Filter",
1086
+ "dataTable": false,
1087
+ "tooltips": false,
1088
+ "prefix": "",
1089
+ "suffix": "",
1090
+ "forestPlot": false,
1091
+ "startingPoint": "0",
1092
+ "forestPlotAlignRight": false,
1093
+ "roundToPlace": 0,
1094
+ "commas": false,
1095
+ "showInViz": false,
1096
+ "forestPlotStartingPoint": 0,
1097
+ "name": "Response_Filter"
1098
+ },
1099
+ "Data_Visualization": {
1100
+ "label": "Data_Visualization",
1101
+ "dataTable": false,
1102
+ "tooltips": false,
1103
+ "prefix": "",
1104
+ "suffix": "",
1105
+ "forestPlot": false,
1106
+ "startingPoint": "0",
1107
+ "forestPlotAlignRight": false,
1108
+ "roundToPlace": 0,
1109
+ "commas": false,
1110
+ "showInViz": false,
1111
+ "forestPlotStartingPoint": 0,
1112
+ "name": "Data_Visualization"
1113
+ },
1114
+ "Location_DisplayOrder": {
1115
+ "name": "Location_DisplayOrder",
1116
+ "dataTable": false
1117
+ },
1118
+ "Question_DisplayOrder": {
1119
+ "name": "Question_DisplayOrder",
1120
+ "dataTable": false
1121
+ },
1122
+ "Response_DisplayOrder": {
1123
+ "name": "Response_DisplayOrder",
1124
+ "dataTable": false
1125
+ },
1126
+ "Createdon": {
1127
+ "name": "Createdon",
1128
+ "dataTable": false
1129
+ },
1130
+ "Class_DisplayOrder": {
1131
+ "name": "Class_DisplayOrder",
1132
+ "dataTable": false
1133
+ },
1134
+ "Topic_DisplayOrder": {
1135
+ "name": "Topic_DisplayOrder",
1136
+ "dataTable": false
1137
+ },
1138
+ "Footnotes_Symbol": {
1139
+ "name": "Footnotes_Symbol",
1140
+ "dataTable": false
1141
+ },
1142
+ "Category_Pivot_Display": {
1143
+ "label": "",
1144
+ "dataTable": true,
1145
+ "tooltips": false,
1146
+ "prefix": "",
1147
+ "suffix": "",
1148
+ "forestPlot": false,
1149
+ "startingPoint": "0",
1150
+ "forestPlotAlignRight": false,
1151
+ "roundToPlace": 0,
1152
+ "commas": false,
1153
+ "showInViz": false,
1154
+ "forestPlotStartingPoint": 0,
1155
+ "name": "Category_Pivot_Display",
1156
+ "order": 1
1157
+ },
1158
+ "Series": {
1159
+ "label": "",
1160
+ "dataTable": true,
1161
+ "tooltips": false,
1162
+ "prefix": "",
1163
+ "suffix": "",
1164
+ "forestPlot": false,
1165
+ "startingPoint": "0",
1166
+ "forestPlotAlignRight": false,
1167
+ "roundToPlace": 0,
1168
+ "commas": false,
1169
+ "showInViz": false,
1170
+ "forestPlotStartingPoint": 0,
1171
+ "name": "Series",
1172
+ "order": 2
1173
+ },
1174
+ "Percentage_Format": {
1175
+ "name": "Percentage_Format",
1176
+ "dataTable": false
1177
+ },
1178
+ "Question_Code": {
1179
+ "name": "Question_Code",
1180
+ "dataTable": false
1181
+ },
1182
+ "State_DisplayOrder": {
1183
+ "name": "State_DisplayOrder",
1184
+ "dataTable": false
1185
+ },
1186
+ "Data_Value_Format": {
1187
+ "label": "Percentage (%)",
1188
+ "dataTable": true,
1189
+ "tooltips": false,
1190
+ "prefix": "",
1191
+ "suffix": "",
1192
+ "forestPlot": false,
1193
+ "startingPoint": "0",
1194
+ "forestPlotAlignRight": false,
1195
+ "roundToPlace": "1",
1196
+ "commas": false,
1197
+ "showInViz": false,
1198
+ "forestPlotStartingPoint": 0,
1199
+ "name": "Data_Value_Format",
1200
+ "order": 5
1201
+ },
1202
+ "Series_DisplayOrder": {
1203
+ "name": "Series_DisplayOrder",
1204
+ "dataTable": false
1205
+ }
1206
+ },
1207
+ "dataFormat": {},
1208
+ "visualizationType": "table",
1209
+ "dataDescription": {
1210
+ "series": false,
1211
+ "horizontal": false
1212
+ },
1213
+ "dataKey": "Explore by Topic Chart and Table",
1214
+ "general": {},
1215
+ "footnotes": {
1216
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
1217
+ "dynamicFootnotes": {
1218
+ "textColumn": "Footnotes",
1219
+ "symbolColumn": "Footnotes_Symbol"
1220
+ }
1221
+ }
1222
+ },
1223
+ "dashboardFilters1725972557434": {
1224
+ "filters": [],
1225
+ "filterBehavior": "Filter Change",
1226
+ "newViz": true,
1227
+ "openModal": true,
1228
+ "uid": "dashboardFilters1725972557434",
1229
+ "type": "dashboardFilters",
1230
+ "sharedFilterIndexes": [
1231
+ 4,
1232
+ 5,
1233
+ 6
1234
+ ],
1235
+ "visualizationType": "dashboardFilters",
1236
+ "autoLoad": true
1237
+ },
1238
+ "markup-include1727985995619": {
1239
+ "filters": [],
1240
+ "filterBehavior": "Filter Change",
1241
+ "openModal": false,
1242
+ "uid": "markup-include1727985995619",
1243
+ "type": "markup-include",
1244
+ "contentEditor": {
1245
+ "inlineHTML": "<h2>{{Question}}</h2><h3>{{Class}}: {{Topic}}</h3>",
1246
+ "showHeader": true,
1247
+ "srcUrl": "#example",
1248
+ "title": "",
1249
+ "useInlineHTML": true,
1250
+ "allowHideSection": true
1251
+ },
1252
+ "theme": "theme-blue",
1253
+ "visual": {
1254
+ "border": false,
1255
+ "accent": false,
1256
+ "background": false,
1257
+ "hideBackgroundColor": false,
1258
+ "borderColorTheme": false
1259
+ },
1260
+ "showEditorPanel": true,
1261
+ "visualizationType": "markup-include",
1262
+ "version": "4.25.1",
1263
+ "dataDescription": {
1264
+ "horizontal": false,
1265
+ "series": false
1266
+ },
1267
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic",
1268
+ "migrations": {
1269
+ "addColorMigration": true
1270
+ },
1271
+ "markupVariables": [
1272
+ {
1273
+ "columnName": "Question",
1274
+ "conditions": [],
1275
+ "name": "Question",
1276
+ "tag": "{{Question}}"
1277
+ },
1278
+ {
1279
+ "columnName": "Class",
1280
+ "conditions": [],
1281
+ "name": "Class",
1282
+ "tag": "{{Class}}"
1283
+ },
1284
+ {
1285
+ "columnName": "Topic",
1286
+ "conditions": [],
1287
+ "name": "Topic",
1288
+ "tag": "{{Topic}}"
1289
+ }
1290
+ ],
1291
+ "enableMarkupVariables": true
1292
+ },
1293
+ "markup-include1731457764699": {
1294
+ "filters": [],
1295
+ "filterBehavior": "Filter Change",
1296
+ "openModal": false,
1297
+ "uid": "markup-include1731457764699",
1298
+ "type": "markup-include",
1299
+ "contentEditor": {
1300
+ "inlineHTML": "<h4>Calculated Variables</h4><p>Calculated variables are variables that are calculated from one or more BRFSS questions. Refer to <a href='https://www.cdc.gov/brfss/annual_data/2023/pdf/2023-calculated-variables-version4-508.pdf' target='_blank'>Calculated Variable Data File</a> for further details.</p>",
1301
+ "showHeader": true,
1302
+ "srcUrl": "#example",
1303
+ "title": "",
1304
+ "useInlineHTML": true,
1305
+ "allowHideSection": true
1306
+ },
1307
+ "theme": "theme-blue",
1308
+ "visual": {
1309
+ "border": false,
1310
+ "accent": false,
1311
+ "background": false,
1312
+ "hideBackgroundColor": false,
1313
+ "borderColorTheme": false
1314
+ },
1315
+ "showEditorPanel": true,
1316
+ "visualizationType": "markup-include",
1317
+ "dataDescription": {
1318
+ "horizontal": false,
1319
+ "series": false
1320
+ },
1321
+ "version": "4.25.1",
1322
+ "migrations": {
1323
+ "addColorMigration": true
1324
+ },
1325
+ "markupVariables": []
1326
+ },
1327
+ "markup-include1733869550808": {
1328
+ "filters": [],
1329
+ "filterBehavior": "Filter Change",
1330
+ "openModal": false,
1331
+ "uid": "markup-include1733869550808",
1332
+ "type": "markup-include",
1333
+ "contentEditor": {
1334
+ "inlineHTML": "<h4>Notes</h4><p>Use caution in interpreting cell sizes less than 50.</p><p>If you see that a question is not available for a particular year, it is because the question was dropped or changed.</p><p>Check the category of interest for that year to find similar items.</p><p>Denominator includes all respondents except those with missing, don't know, and refused answers.</p>",
1335
+ "showHeader": true,
1336
+ "srcUrl": "#example",
1337
+ "title": "",
1338
+ "useInlineHTML": true
1339
+ },
1340
+ "theme": "theme-blue",
1341
+ "visual": {
1342
+ "border": false,
1343
+ "accent": false,
1344
+ "background": false,
1345
+ "hideBackgroundColor": false,
1346
+ "borderColorTheme": false
1347
+ },
1348
+ "showEditorPanel": true,
1349
+ "visualizationType": "markup-include",
1350
+ "dataDescription": {},
1351
+ "dataKey": "",
1352
+ "version": "4.25.1",
1353
+ "migrations": {
1354
+ "addColorMigration": true
1355
+ },
1356
+ "markupVariables": []
1357
+ },
1358
+ "markup-include1733869573450": {
1359
+ "filters": [],
1360
+ "filterBehavior": "Filter Change",
1361
+ "openModal": false,
1362
+ "uid": "markup-include1733869573450",
1363
+ "type": "markup-include",
1364
+ "contentEditor": {
1365
+ "inlineHTML": "<h4>Suggested Citation</h4><p>Centers for Disease Control and Prevention, National Center for Chronic Disease Prevention and Health Promotion, Division of Population Health. BRFSS Prevalence & Trends Data [online]. 2025. [accessed {{AccessedDate}}]. URL: <a href='https://www.cdc.gov/brfss/brfssprevalence/' target='_blank'>https://www.cdc.gov/brfss/brfssprevalence/.</a></p>",
1366
+ "showHeader": true,
1367
+ "srcUrl": "#example",
1368
+ "title": "",
1369
+ "useInlineHTML": true
1370
+ },
1371
+ "theme": "theme-blue",
1372
+ "visual": {
1373
+ "border": false,
1374
+ "accent": false,
1375
+ "background": false,
1376
+ "hideBackgroundColor": false,
1377
+ "borderColorTheme": false
1378
+ },
1379
+ "showEditorPanel": true,
1380
+ "visualizationType": "markup-include",
1381
+ "dataDescription": {
1382
+ "horizontal": false,
1383
+ "series": false
1384
+ },
1385
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()",
1386
+ "version": "4.25.1",
1387
+ "migrations": {
1388
+ "addColorMigration": true
1389
+ },
1390
+ "markupVariables": [
1391
+ {
1392
+ "columnName": "getdate()",
1393
+ "conditions": [],
1394
+ "name": "AccessedDate",
1395
+ "tag": "{{AccessedDate}}"
1396
+ }
1397
+ ],
1398
+ "enableMarkupVariables": true
1399
+ },
1400
+ "markup-include1733869622293": {
1401
+ "filters": [],
1402
+ "filterBehavior": "Filter Change",
1403
+ "openModal": false,
1404
+ "uid": "markup-include1733869622293",
1405
+ "type": "markup-include",
1406
+ "contentEditor": {
1407
+ "inlineHTML": "<h4>Measure Definitions</h4><p><strong>% =</strong> Percent</p><p><strong>CI =</strong> 95% Confidence Interval</p><p><strong>n =</strong> “Sample Size”. Translates to the number of adult respondents who answered this question, or were assigned to this category based on question responses for a calculated variable, or the number of states included for a median.</p><p><strong>N/A =</strong> Translates to no data available for a record.</p>",
1408
+ "showHeader": true,
1409
+ "srcUrl": "#example",
1410
+ "title": "",
1411
+ "useInlineHTML": true
1412
+ },
1413
+ "theme": "theme-blue",
1414
+ "visual": {
1415
+ "border": false,
1416
+ "accent": false,
1417
+ "background": false,
1418
+ "hideBackgroundColor": false,
1419
+ "borderColorTheme": false
1420
+ },
1421
+ "showEditorPanel": true,
1422
+ "visualizationType": "markup-include",
1423
+ "version": "4.25.1",
1424
+ "migrations": {
1425
+ "addColorMigration": true
1426
+ },
1427
+ "markupVariables": []
1428
+ },
1429
+ "markup-include1738165566534": {
1430
+ "filters": [],
1431
+ "filterBehavior": "Filter Change",
1432
+ "openModal": false,
1433
+ "uid": "markup-include1738165566534",
1434
+ "type": "markup-include",
1435
+ "contentEditor": {
1436
+ "inlineHTML": "<h3>{{Year}}</h3>",
1437
+ "showHeader": true,
1438
+ "srcUrl": "#example",
1439
+ "title": "",
1440
+ "useInlineHTML": true,
1441
+ "allowHideSection": true
1442
+ },
1443
+ "theme": "theme-blue",
1444
+ "visual": {
1445
+ "border": false,
1446
+ "accent": false,
1447
+ "background": true,
1448
+ "hideBackgroundColor": false,
1449
+ "borderColorTheme": false
1450
+ },
1451
+ "showEditorPanel": true,
1452
+ "visualizationType": "markup-include",
1453
+ "dataDescription": {
1454
+ "horizontal": false,
1455
+ "series": false
1456
+ },
1457
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic",
1458
+ "version": "4.25.1",
1459
+ "migrations": {
1460
+ "addColorMigration": true
1461
+ },
1462
+ "markupVariables": [
1463
+ {
1464
+ "columnName": "Year",
1465
+ "conditions": [],
1466
+ "name": "Year",
1467
+ "tag": "{{Year}}"
1468
+ }
1469
+ ],
1470
+ "enableMarkupVariables": true
1471
+ }
1472
+ },
1473
+ "table": {
1474
+ "label": "Data Table",
1475
+ "show": false,
1476
+ "showDownloadUrl": false,
1477
+ "showVertical": true
1478
+ },
1479
+ "type": "dashboard",
1480
+ "version": "4.25.11",
1481
+ "uuid": 1738165548489,
1482
+ "label": "New Dashboard 1",
1483
+ "migrations": {
1484
+ "addColorMigration": true
1485
+ },
1486
+ "runtime": {},
1487
+ "general": {
1488
+ "palette": {
1489
+ "version": "1.0",
1490
+ "backups": [
1491
+ {
1492
+ "name": "__​undefined__",
1493
+ "version": "1.0",
1494
+ "isReversed": "__​undefined__"
1495
+ }
1496
+ ]
1497
+ }
1498
+ },
1499
+ "datasets": {
1500
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic": {
1501
+ "dataFileSize": 1272430,
1502
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000",
1503
+ "dataFileSourceType": "url",
1504
+ "dataFileFormat": "JSON",
1505
+ "preview": false,
1506
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000"
1507
+ },
1508
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()": {
1509
+ "dataFileSize": 92002,
1510
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()",
1511
+ "dataFileSourceType": "url",
1512
+ "dataFileFormat": "JSON",
1513
+ "preview": false,
1514
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()"
1515
+ },
1516
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'": {
1517
+ "dataFileSize": 1286146,
1518
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'",
1519
+ "dataFileSourceType": "url",
1520
+ "dataFileFormat": "JSON",
1521
+ "preview": false,
1522
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'"
1523
+ },
1524
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'": {
1525
+ "dataFileSize": 1272966,
1526
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'",
1527
+ "dataFileSourceType": "url",
1528
+ "dataFileFormat": "JSON",
1529
+ "preview": false,
1530
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'"
1531
+ },
1532
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22": {
1533
+ "dataFileSize": 515,
1534
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22",
1535
+ "dataFileSourceType": "url",
1536
+ "dataFileFormat": "JSON",
1537
+ "preview": false,
1538
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22"
1539
+ },
1540
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22": {
1541
+ "dataFileSize": 480,
1542
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22",
1543
+ "dataFileSourceType": "url",
1544
+ "dataFileFormat": "JSON",
1545
+ "preview": false,
1546
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22"
1547
+ },
1548
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27": {
1549
+ "dataFileSize": 1225,
1550
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes,Footnotes_Symbol&$where=subcategory_filter%20like%20%27All%%27",
1551
+ "dataFileSourceType": "url",
1552
+ "dataFileFormat": "JSON",
1553
+ "preview": false,
1554
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes,Footnotes_Symbol&$where=subcategory_filter%20like%20%27All%%27",
1555
+ "data": [
1556
+ {
1557
+ "Footnotes": null,
1558
+ "Footnotes_Symbol": null
1559
+ },
1560
+ {
1561
+ "Footnotes": "** Median value reported with no confidence intervals.",
1562
+ "Footnotes_Symbol": "**"
1563
+ }
1564
+ ],
1565
+ "runtimeDataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT Footnotes,Footnotes_Symbol&$where=subcategory_filter like 'All%'&Class=\"Alcohol Consumption\"&Topic=\"Alcohol Consumption\"&Year=2023&Question_Code=\"Adults who have had at least one drink of alcohol within the past 30 days\"&Category=\"Overall\"&Data_Type=\"Crude Prevalence\"&Dataset=\"Nationwide\""
1566
+ },
1567
+ "Explore by Topic Chart and Table": {
1568
+ "dataFileSize": 2192679,
1569
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=Data_Visualization%20in%20(%22Chart_Table%22,%22Map_Chart_Table%22)&$order=State_DisplayOrder,Series_DisplayOrder",
1570
+ "dataFileSourceType": "url",
1571
+ "dataFileFormat": "JSON",
1572
+ "preview": true,
1573
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=Data_Visualization%20in%20(%22Chart_Table%22,%22Map_Chart_Table%22)&$order=State_DisplayOrder,Series_DisplayOrder"
1574
+ },
1575
+ "Explore by Topic Map": {
1576
+ "dataFileSize": 1698150,
1577
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2001&$where=Data_Visualization%20in%20(%22Map_Only%22,%22Map_Chart_Table%22)&$order=Location_DisplayOrder",
1578
+ "dataFileSourceType": "url",
1579
+ "dataFileFormat": "JSON",
1580
+ "preview": false,
1581
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2001&$where=Data_Visualization%20in%20(%22Map_Only%22,%22Map_Chart_Table%22)&$order=Location_DisplayOrder"
1582
+ }
1583
+ }
1584
+ }