@cdc/dashboard 4.25.8 → 4.25.11

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