@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
@@ -1,2174 +1,2164 @@
1
1
  {
2
- "dashboard": {
3
- "theme": "theme-blue",
4
- "sharedFilters": [
5
- {
6
- "key": "Dataset",
7
- "showDropdown": true,
8
- "tier": 1,
9
- "type": "urlfilter",
10
- "apiFilter": {
11
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Dataset",
12
- "valueSelector": "Dataset",
13
- "textSelector": ""
14
- },
15
- "resetLabel": "",
16
- "setByQueryParameter": ""
17
- },
18
- {
19
- "key": "Location",
20
- "showDropdown": true,
21
- "tier": 2,
22
- "type": "urlfilter",
23
- "apiFilter": {
24
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20LocationCategory,State,State_Code&$order=LocationCategory,State",
25
- "subgroupTextSelector": "State",
26
- "subgroupValueSelector": "State_Code",
27
- "textSelector": "-Select Location-",
28
- "valueSelector": "LocationCategory"
29
- },
30
- "parents": [
31
- "Dataset"
32
- ],
33
- "filterStyle": "nested-dropdown",
34
- "subGrouping": {
35
- "columnName": "",
36
- "setByQueryParameter": "",
37
- "valuesLookup": {}
38
- },
39
- "resetLabel": "-Select-",
40
- "setByQueryParameter": ""
41
- },
42
- {
43
- "key": "Class",
44
- "showDropdown": true,
45
- "tier": 2,
46
- "type": "urlfilter",
47
- "apiFilter": {
48
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Class,Class_DisplayOrder&$order=Class_DisplayOrder",
49
- "valueSelector": "Class",
50
- "textSelector": ""
51
- },
52
- "parents": [
53
- "Dataset",
54
- "Location"
55
- ],
56
- "setByQueryParameter": ""
57
- },
58
- {
59
- "key": "Topic",
60
- "showDropdown": true,
61
- "tier": 2,
62
- "type": "urlfilter",
63
- "apiFilter": {
64
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Topic&$order=Topic",
65
- "valueSelector": "Topic",
66
- "textSelector": ""
67
- },
68
- "parents": [
69
- "Dataset",
70
- "Location",
71
- "Class"
72
- ],
73
- "setByQueryParameter": ""
74
- },
75
- {
76
- "key": "Year",
77
- "showDropdown": true,
78
- "tier": 2,
79
- "type": "urlfilter",
80
- "apiFilter": {
81
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Question_Year&$order=Question_Year%20Desc",
82
- "valueSelector": "Question_Year",
83
- "textSelector": ""
84
- },
85
- "parents": [
86
- "Location",
87
- "Class",
88
- "Topic",
89
- "Dataset"
90
- ],
91
- "usedBy": [],
92
- "setByQueryParameter": ""
93
- },
94
- {
95
- "key": "Question",
96
- "showDropdown": true,
97
- "tier": 2,
98
- "type": "urlfilter",
99
- "apiFilter": {
100
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Question,Question_Code&$order=Question_Code",
101
- "valueSelector": "Question_Code",
102
- "textSelector": "Question"
103
- },
104
- "parents": [
105
- "Dataset",
106
- "Location",
107
- "Class",
108
- "Topic",
109
- "Year"
110
- ],
111
- "usedBy": []
112
- },
113
- {
114
- "key": "View By",
115
- "showDropdown": true,
116
- "tier": 2,
117
- "type": "urlfilter",
118
- "apiFilter": {
119
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder",
120
- "valueSelector": "Category",
121
- "textSelector": ""
122
- },
123
- "parents": [
124
- "Dataset",
125
- "Location",
126
- "Class",
127
- "Topic",
128
- "Year",
129
- "Question"
130
- ],
131
- "usedBy": [
132
- "chart1729106285960",
133
- "table1729106290803",
134
- "footnotes1729516540074",
135
- "chart1729199128590",
136
- "table1729200514531",
137
- "footnotes1734104655867"
138
- ]
139
- },
140
- {
141
- "key": "Data Type",
142
- "showDropdown": true,
143
- "tier": 2,
144
- "type": "urlfilter",
145
- "apiFilter": {
146
- "apiEndpoint": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Data_Type&$order=Data_Type%20DESC",
147
- "valueSelector": "Data_Type",
148
- "textSelector": ""
149
- },
150
- "parents": [
151
- "Dataset",
152
- "Location",
153
- "Class",
154
- "Topic",
155
- "Year",
156
- "Question",
157
- "View By"
158
- ],
159
- "usedBy": [
160
- "chart1729106285960",
161
- "table1729106290803",
162
- "footnotes1729516540074",
163
- "chart1729199128590",
164
- "table1729200514531",
165
- "footnotes1734104655867"
166
- ]
167
- }
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "sharedFilters": [
5
+ {
6
+ "key": "Dataset",
7
+ "showDropdown": true,
8
+ "tier": 1,
9
+ "type": "urlfilter",
10
+ "apiFilter": {
11
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Dataset",
12
+ "valueSelector": "Dataset",
13
+ "textSelector": ""
14
+ },
15
+ "resetLabel": "",
16
+ "setByQueryParameter": ""
17
+ },
18
+ {
19
+ "key": "Location",
20
+ "showDropdown": true,
21
+ "tier": 2,
22
+ "type": "urlfilter",
23
+ "apiFilter": {
24
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20LocationCategory,State,State_Code&$order=LocationCategory,State",
25
+ "subgroupTextSelector": "State",
26
+ "subgroupValueSelector": "State_Code",
27
+ "textSelector": "-Select Location-",
28
+ "valueSelector": "LocationCategory"
29
+ },
30
+ "parents": [
31
+ "Dataset"
32
+ ],
33
+ "filterStyle": "nested-dropdown",
34
+ "subGrouping": {
35
+ "columnName": "",
36
+ "setByQueryParameter": "",
37
+ "valuesLookup": {}
38
+ },
39
+ "resetLabel": "-Select-",
40
+ "setByQueryParameter": ""
41
+ },
42
+ {
43
+ "key": "Class",
44
+ "showDropdown": true,
45
+ "tier": 2,
46
+ "type": "urlfilter",
47
+ "apiFilter": {
48
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Class,Class_DisplayOrder&$order=Class_DisplayOrder",
49
+ "valueSelector": "Class",
50
+ "textSelector": ""
51
+ },
52
+ "parents": [
53
+ "Dataset",
54
+ "Location"
55
+ ],
56
+ "setByQueryParameter": ""
57
+ },
58
+ {
59
+ "key": "Topic",
60
+ "showDropdown": true,
61
+ "tier": 2,
62
+ "type": "urlfilter",
63
+ "apiFilter": {
64
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Topic&$order=Topic",
65
+ "valueSelector": "Topic",
66
+ "textSelector": ""
67
+ },
68
+ "parents": [
69
+ "Dataset",
70
+ "Location",
71
+ "Class"
72
+ ],
73
+ "setByQueryParameter": ""
74
+ },
75
+ {
76
+ "key": "Year",
77
+ "showDropdown": true,
78
+ "tier": 1,
79
+ "type": "urlfilter",
80
+ "apiFilter": {
81
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Question_Year&$order=Question_Year%20Desc",
82
+ "valueSelector": "Question_Year",
83
+ "textSelector": ""
84
+ },
85
+ "parents": [
86
+ "Location",
87
+ "Class",
88
+ "Topic",
89
+ "Dataset"
90
+ ],
91
+ "usedBy": [],
92
+ "setByQueryParameter": ""
93
+ },
94
+ {
95
+ "key": "Question",
96
+ "showDropdown": true,
97
+ "tier": 1,
98
+ "type": "urlfilter",
99
+ "apiFilter": {
100
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Question,Question_Code&$order=Question_Code",
101
+ "valueSelector": "Question_Code",
102
+ "textSelector": "Question"
103
+ },
104
+ "parents": [
105
+ "Dataset",
106
+ "Location",
107
+ "Class",
108
+ "Topic",
109
+ "Year"
110
+ ],
111
+ "usedBy": []
112
+ },
113
+ {
114
+ "key": "View By",
115
+ "showDropdown": true,
116
+ "tier": 2,
117
+ "type": "urlfilter",
118
+ "apiFilter": {
119
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder",
120
+ "valueSelector": "Category",
121
+ "textSelector": ""
122
+ },
123
+ "parents": [
124
+ "Dataset",
125
+ "Location",
126
+ "Class",
127
+ "Topic",
128
+ "Year",
129
+ "Question"
130
+ ],
131
+ "usedBy": [
132
+ "chart1729106285960",
133
+ "table1729106290803",
134
+ "footnotes1729516540074",
135
+ "chart1729199128590",
136
+ "table1729200514531",
137
+ "footnotes1734104655867"
168
138
  ]
169
- },
170
- "rows": [
171
- {
172
- "columns": [
173
- {
174
- "width": 12,
175
- "widget": "dashboardFilters1729110083267"
176
- },
177
- {},
178
- {}
179
- ]
139
+ },
140
+ {
141
+ "key": "Data Type",
142
+ "showDropdown": true,
143
+ "tier": 2,
144
+ "type": "urlfilter",
145
+ "apiFilter": {
146
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Data_Type&$order=Data_Type%20DESC",
147
+ "valueSelector": "Data_Type",
148
+ "textSelector": ""
180
149
  },
150
+ "parents": [
151
+ "Dataset",
152
+ "Location",
153
+ "Class",
154
+ "Topic",
155
+ "Year",
156
+ "Question",
157
+ "View By"
158
+ ],
159
+ "usedBy": [
160
+ "chart1729106285960",
161
+ "table1729106290803",
162
+ "footnotes1729516540074",
163
+ "chart1729199128590",
164
+ "table1729200514531",
165
+ "footnotes1734104655867"
166
+ ]
167
+ }
168
+ ]
169
+ },
170
+ "rows": [
171
+ {
172
+ "columns": [
181
173
  {
182
- "columns": [
183
- {
184
- "width": 12,
185
- "widget": "dashboardFilters1729110055653"
186
- },
187
- {},
188
- {}
189
- ]
174
+ "width": 12,
175
+ "widget": "dashboardFilters1729110083267"
190
176
  },
177
+ {},
178
+ {}
179
+ ]
180
+ },
181
+ {
182
+ "columns": [
191
183
  {
192
- "columns": [
193
- {
194
- "width": 12,
195
- "widget": "markup-include1729109453998"
196
- }
197
- ]
184
+ "width": 12,
185
+ "widget": "dashboardFilters1729110055653"
198
186
  },
187
+ {},
188
+ {}
189
+ ]
190
+ },
191
+ {
192
+ "columns": [
199
193
  {
200
- "columns": [
201
- {
202
- "width": 12,
203
- "widget": "dashboardFilters1729110055542"
204
- }
205
- ],
206
- "uuid": 1729110036831
207
- },
194
+ "width": 12,
195
+ "widget": "markup-include1729109453998"
196
+ }
197
+ ]
198
+ },
199
+ {
200
+ "columns": [
208
201
  {
209
- "columns": [
210
- {
211
- "width": 12,
212
- "widget": "markup-include1729518918015"
213
- }
214
- ],
215
- "uuid": 1730733434732
216
- },
202
+ "width": 12,
203
+ "widget": "dashboardFilters1729110055542"
204
+ }
205
+ ],
206
+ "uuid": 1729110036831
207
+ },
208
+ {
209
+ "columns": [
217
210
  {
218
- "columns": [
219
- {
220
- "width": 12,
221
- "widget": "chart1729106285960"
222
- },
223
- {
224
- "width": 12,
225
- "widget": "table1729106290803"
226
- },
227
- {
228
- "width": 12
229
- }
230
- ],
231
- "toggle": true,
232
- "uuid": 1742565249713
233
- },
211
+ "width": 12,
212
+ "widget": "markup-include1729518918015"
213
+ }
214
+ ],
215
+ "uuid": 1730733434732
216
+ },
217
+ {
218
+ "columns": [
234
219
  {
235
- "columns": [
236
- {
237
- "width": 12,
238
- "widget": "markup-include1729199113607"
239
- }
240
- ],
241
- "uuid": 1742565247168
220
+ "width": 12,
221
+ "widget": "chart1729106285960"
242
222
  },
243
223
  {
244
- "columns": [
245
- {
246
- "width": 12,
247
- "widget": "dashboardFilters1730734791987"
248
- }
249
- ],
250
- "uuid": 1742565244311
224
+ "width": 12,
225
+ "widget": "table1729106290803"
251
226
  },
252
227
  {
253
- "columns": [
254
- {
255
- "width": 12,
256
- "widget": "chart1729199128590"
257
- },
258
- {
259
- "width": 12,
260
- "widget": "table1729200514531"
261
- },
262
- {
263
- "width": 12
264
- }
265
- ],
266
- "toggle": true,
267
- "uuid": 1742565242630
268
- },
228
+ "width": 12
229
+ }
230
+ ],
231
+ "toggle": true,
232
+ "uuid": 1742565249713,
233
+ "footnotesId": "footnotes1734396315073"
234
+ },
235
+ {
236
+ "columns": [
269
237
  {
270
- "columns": [
271
- {
272
- "width": 12,
273
- "widget": "markup-include1733949172178"
274
- }
275
- ],
276
- "uuid": 1742565241248
277
- },
238
+ "width": 12,
239
+ "widget": "markup-include1729199113607"
240
+ }
241
+ ],
242
+ "uuid": 1742565247168
243
+ },
244
+ {
245
+ "columns": [
278
246
  {
279
- "columns": [
280
- {
281
- "width": 12,
282
- "widget": "markup-include1733961395463"
283
- }
284
- ],
285
- "uuid": 1742565239167
247
+ "width": 12,
248
+ "widget": "dashboardFilters1730734791987"
249
+ }
250
+ ],
251
+ "uuid": 1742565244311
252
+ },
253
+ {
254
+ "columns": [
255
+ {
256
+ "width": 12,
257
+ "widget": "chart1729199128590"
286
258
  },
287
259
  {
288
- "columns": [
289
- {
290
- "width": 12,
291
- "widget": "markup-include1737744929946"
292
- }
293
- ],
294
- "uuid": 1742565236775
260
+ "width": 12,
261
+ "widget": "table1729200514531"
295
262
  },
296
263
  {
297
- "columns": [
298
- {
299
- "width": 12,
300
- "widget": "markup-include1730737829692"
301
- }
302
- ],
303
- "dataDescription": {
304
- "horizontal": false,
305
- "series": false
306
- },
307
- "dataKey": "Get Date",
308
- "uuid": 1742565234615
264
+ "width": 12
265
+ }
266
+ ],
267
+ "toggle": true,
268
+ "uuid": 1742565242630,
269
+ "footnotesId": "footnotes1734104655867"
270
+ },
271
+ {
272
+ "columns": [
273
+ {
274
+ "width": 12,
275
+ "widget": "markup-include1733949172178"
309
276
  }
310
- ],
311
- "visualizations": {
312
- "chart1729106285960": {
313
- "annotations": [],
314
- "type": "chart",
315
- "debugSvg": false,
316
- "chartMessage": {
317
- "noData": "No Data Available"
318
- },
319
- "title": "",
320
- "showTitle": false,
321
- "showDownloadMediaButton": false,
322
- "theme": "theme-blue",
323
- "animate": false,
324
- "fontSize": "medium",
325
- "lineDatapointStyle": "hover",
326
- "lineDatapointColor": "Same as Line",
327
- "barHasBorder": "false",
328
- "isLollipopChart": false,
329
- "lollipopShape": "circle",
330
- "lollipopColorStyle": "two-tone",
331
- "visualizationSubType": "regular",
332
- "barStyle": "flat",
333
- "roundingStyle": "standard",
334
- "tipRounding": "top",
335
- "isResponsiveTicks": true,
336
- "general": {
337
- "annotationDropdownText": "Annotations",
338
- "showMissingDataLabel": false,
339
- "showSuppressedSymbol": true,
340
- "showZeroValueData": true,
341
- "hideNullValue": true
342
- },
343
- "padding": {
344
- "left": 5,
345
- "right": 5
346
- },
347
- "preliminaryData": [],
348
- "yAxis": {
349
- "hideAxis": false,
350
- "displayNumbersOnBar": false,
351
- "hideLabel": false,
352
- "hideTicks": false,
353
- "size": "90",
354
- "gridLines": false,
355
- "enablePadding": true,
356
- "min": "0",
357
- "max": "",
358
- "labelColor": "#333",
359
- "tickLabelColor": "#333",
360
- "tickColor": "#333",
361
- "rightHideAxis": true,
362
- "rightAxisSize": 0,
363
- "rightLabel": "",
364
- "rightLabelOffsetSize": 0,
365
- "rightAxisLabelColor": "#333",
366
- "rightAxisTickLabelColor": "#333",
367
- "rightAxisTickColor": "#333",
368
- "numTicks": "10",
369
- "axisPadding": 0,
370
- "scalePadding": "0",
371
- "tickRotation": "0",
372
- "anchors": [],
373
- "shoMissingDataLabel": true,
374
- "showMissingDataLine": true,
375
- "categories": [],
376
- "label": "Percentage",
377
- "labelOffset": "0",
378
- "labelPlacement": "Below Bar"
379
- },
380
- "boxplot": {
381
- "plots": [],
382
- "borders": "true",
383
- "plotOutlierValues": false,
384
- "plotNonOutlierValues": true,
385
- "labels": {
386
- "q1": "Lower Quartile",
387
- "q2": "q2",
388
- "q3": "Upper Quartile",
389
- "q4": "q4",
390
- "minimum": "Minimum",
391
- "maximum": "Maximum",
392
- "mean": "Mean",
393
- "median": "Median",
394
- "sd": "Standard Deviation",
395
- "iqr": "Interquartile Range",
396
- "total": "Total",
397
- "outliers": "Outliers",
398
- "values": "Values",
399
- "lowerBounds": "Lower Bounds",
400
- "upperBounds": "Upper Bounds",
401
- "count": "Count"
402
- },
403
- "firstQuartilePercentage": 25,
404
- "thirdQuartilePercentage": 75,
405
- "boxWidthPercentage": 40,
406
- "legend": {
407
- "showHowToReadText": false,
408
- "howToReadText": ""
409
- }
410
- },
411
- "topAxis": {
412
- "hasLine": false
413
- },
414
- "isLegendValue": false,
415
- "barThickness": "0.5",
416
- "barHeight": 25,
417
- "barSpace": 15,
418
- "heights": {
419
- "vertical": "400",
420
- "horizontal": 409.79999999999995
421
- },
422
- "xAxis": {
423
- "sortDates": false,
424
- "anchors": [],
425
- "type": "categorical",
426
- "showTargetLabel": true,
427
- "targetLabel": "Target",
428
- "hideAxis": false,
429
- "hideLabel": false,
430
- "hideTicks": false,
431
- "size": 75,
432
- "tickRotation": 0,
433
- "min": "",
434
- "max": "",
435
- "labelColor": "#333",
436
- "tickLabelColor": "#333",
437
- "tickColor": "#333",
438
- "numTicks": "",
439
- "labelOffset": 0,
440
- "axisPadding": 200,
441
- "target": 0,
442
- "maxTickRotation": "30",
443
- "padding": 0,
444
- "showYearsOnce": false,
445
- "sortByRecentDate": false,
446
- "dataKey": "Response",
447
- "axisBBox": 39.19990539550781,
448
- "tickWidthMax": 25,
449
- "label": "Response"
450
- },
451
- "table": {
452
- "label": "Data Table",
453
- "expanded": false,
454
- "limitHeight": false,
455
- "height": "",
456
- "caption": "",
457
- "showDownloadUrl": false,
458
- "showDataTableLink": false,
459
- "showDownloadLinkBelow": true,
460
- "indexLabel": "",
461
- "download": true,
462
- "showVertical": false,
463
- "dateDisplayFormat": "",
464
- "showMissingDataLabel": true,
465
- "showSuppressedSymbol": true,
466
- "show": false,
467
- "showDownloadImgButton": true,
468
- "collapsible": false
469
- },
470
- "orientation": "vertical",
471
- "color": "pinkpurple",
472
- "columns": {
473
- "95%_CI": {
474
- "label": "95% CI",
475
- "dataTable": true,
476
- "tooltips": true,
477
- "prefix": "",
478
- "suffix": "",
479
- "forestPlot": false,
480
- "startingPoint": "0",
481
- "forestPlotAlignRight": false,
482
- "roundToPlace": 0,
483
- "commas": false,
484
- "showInViz": false,
485
- "forestPlotStartingPoint": 0,
486
- "name": "95%_CI",
487
- "series": ""
488
- },
489
- "n": {
490
- "label": "n",
491
- "dataTable": true,
492
- "tooltips": true,
493
- "prefix": "",
494
- "suffix": "",
495
- "forestPlot": false,
496
- "startingPoint": "0",
497
- "forestPlotAlignRight": false,
498
- "roundToPlace": 0,
499
- "commas": true,
500
- "showInViz": false,
501
- "forestPlotStartingPoint": 0,
502
- "name": "n",
503
- "series": ""
504
- }
505
- },
506
- "legend": {
507
- "hide": false,
508
- "behavior": "highlight",
509
- "axisAlign": true,
510
- "singleRow": true,
511
- "colorCode": "",
512
- "reverseLabelOrder": false,
513
- "description": "",
514
- "dynamicLegend": false,
515
- "dynamicLegendDefaultText": "Show All",
516
- "dynamicLegendItemLimit": 5,
517
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
518
- "dynamicLegendChartMessage": "Select Options from the Legend",
519
- "label": "",
520
- "lineMode": false,
521
- "verticalSorted": true,
522
- "highlightOnHover": false,
523
- "hideSuppressedLabels": false,
524
- "hideSuppressionLink": false,
525
- "seriesHighlight": [],
526
- "style": "circles",
527
- "subStyle": "linear blocks",
528
- "shape": "circle",
529
- "tickRotation": "",
530
- "hideBorder": {
531
- "side": false,
532
- "topBottom": false
533
- },
534
- "position": "bottom",
535
- "unified": true
536
- },
537
- "brush": {
538
- "height": 25,
539
- "active": false
540
- },
541
- "exclusions": {
542
- "active": false,
543
- "keys": []
544
- },
545
- "palette": "qualitative-bold",
546
- "isPaletteReversed": false,
547
- "twoColor": {
548
- "palette": "monochrome-1",
549
- "isPaletteReversed": false
550
- },
551
- "labels": false,
552
- "dataFormat": {
553
- "commas": false,
554
- "prefix": "",
555
- "suffix": "%",
556
- "abbreviated": false,
557
- "bottomSuffix": "",
558
- "bottomPrefix": "",
559
- "bottomAbbreviated": false,
560
- "onlyShowTopPrefixSuffix": false,
561
- "roundTo": "1"
562
- },
563
- "confidenceKeys": {
564
- "upper": "High_CI",
565
- "lower": "Low_CI"
566
- },
567
- "visual": {
568
- "border": true,
569
- "accent": true,
570
- "background": true,
571
- "verticalHoverLine": false,
572
- "horizontalHoverLine": false,
573
- "lineDatapointSymbol": "none",
574
- "maximumShapeAmount": 7
575
- },
576
- "useLogScale": false,
577
- "filterBehavior": "Filter Change",
578
- "highlightedBarValues": [],
579
- "series": [
580
- {
581
- "dataKey": "Percentage",
582
- "type": "Bar",
583
- "axis": "Left",
584
- "tooltip": true,
585
- "dynamicCategory": "Subcategory",
586
- "name": ""
587
- }
588
- ],
589
- "tooltips": {
590
- "opacity": 90,
591
- "singleSeries": true,
592
- "dateDisplayFormat": ""
593
- },
594
- "forestPlot": {
595
- "startAt": 0,
596
- "colors": {
597
- "line": "",
598
- "shape": ""
599
- },
600
- "lineOfNoEffect": {
601
- "show": true
602
- },
603
- "type": "",
604
- "pooledResult": {
605
- "diamondHeight": 5,
606
- "column": ""
607
- },
608
- "estimateField": "",
609
- "estimateRadius": "",
610
- "shape": "square",
611
- "rowHeight": 20,
612
- "description": {
613
- "show": true,
614
- "text": "description",
615
- "location": 0
616
- },
617
- "result": {
618
- "show": true,
619
- "text": "result",
620
- "location": 100
621
- },
622
- "radius": {
623
- "min": 2,
624
- "max": 10,
625
- "scalingColumn": ""
626
- },
627
- "regression": {
628
- "lower": 0,
629
- "upper": 0,
630
- "estimateField": 0
631
- },
632
- "leftWidthOffset": 0,
633
- "rightWidthOffset": 0,
634
- "showZeroLine": false,
635
- "leftLabel": "",
636
- "rightLabel": ""
637
- },
638
- "area": {
639
- "isStacked": false
640
- },
641
- "sankey": {
642
- "title": {
643
- "defaultColor": "black"
644
- },
645
- "iterations": 1,
646
- "rxValue": 0.9,
647
- "overallSize": {
648
- "width": 900,
649
- "height": 700
650
- },
651
- "margin": {
652
- "margin_y": 25,
653
- "margin_x": 0
654
- },
655
- "nodeSize": {
656
- "nodeWidth": 26,
657
- "nodeHeight": 40
658
- },
659
- "nodePadding": 55,
660
- "nodeFontColor": "black",
661
- "nodeColor": {
662
- "default": "#ff8500",
663
- "inactive": "#808080"
664
- },
665
- "linkColor": {
666
- "default": "#ffc900",
667
- "inactive": "#D3D3D3"
668
- },
669
- "opacity": {
670
- "nodeOpacityDefault": 1,
671
- "nodeOpacityInactive": 0.1,
672
- "LinkOpacityDefault": 1,
673
- "LinkOpacityInactive": 0.1
674
- },
675
- "storyNodeFontColor": "#006778",
676
- "storyNodeText": [],
677
- "nodeValueStyle": {
678
- "textBefore": "(",
679
- "textAfter": ")"
680
- },
681
- "data": []
682
- },
683
- "filters": [],
684
- "openModal": true,
685
- "uid": "chart1729106285960",
686
- "visualizationType": "Bar",
687
- "dataDescription": {
688
- "horizontal": false,
689
- "series": false
690
- },
691
- "dataKey": "Single Year",
692
- "version": "4.25.1",
693
- "dynamicMarginTop": 53,
694
- "description": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
695
- "rankByValue": "",
696
- "footnotes": {
697
- "dataKey": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
698
- "dynamicFootnotes": {
699
- "textColumn": "Footnotes",
700
- "orderColumn": "Footnotes",
701
- "symbolColumn": "Footnotes_Symbol"
702
- },
703
- "staticFootnotes": [
704
- {
705
- "text": "The ordering of subcategory rows in the table view may vary across responses."
706
- }
707
- ]
708
- },
709
- "migrations": {
710
- "addColorMigration": true
711
- },
712
- "legacyFootnotes": ""
713
- },
714
- "table1729106290803": {
715
- "filters": [],
716
- "filterBehavior": "Filter Change",
717
- "newViz": false,
718
- "openModal": true,
719
- "uid": "table1729106290803",
720
- "type": "table",
721
- "table": {
722
- "label": "Data Table",
723
- "show": true,
724
- "showDownloadUrl": false,
725
- "showVertical": true,
726
- "expanded": true,
727
- "collapsible": false,
728
- "groupBy": "Response",
729
- "showDownloadLinkBelow": false,
730
- "pivot": {
731
- "columnName": "Category",
732
- "valueColumns": [
733
- "Subcategory"
734
- ]
735
- },
736
- "limitHeight": true,
737
- "height": "1252",
738
- "caption": "",
739
- "sharedFilterColumns": [
740
- "Dataset",
741
- "-Select Location-",
742
- "State",
743
- "Class",
744
- "Topic",
745
- "Question_Year",
746
- "Question",
747
- "Category",
748
- "Data_Type"
749
- ],
750
- "download": false
751
- },
752
- "columns": {
753
- "Response": {
754
- "label": "Response",
755
- "dataTable": true,
756
- "tooltips": false,
757
- "prefix": "",
758
- "suffix": "",
759
- "forestPlot": false,
760
- "startingPoint": "0",
761
- "forestPlotAlignRight": false,
762
- "roundToPlace": 0,
763
- "commas": false,
764
- "showInViz": false,
765
- "forestPlotStartingPoint": 0,
766
- "name": "Response",
767
- "order": 3
768
- },
769
- "n": {
770
- "label": "n",
771
- "dataTable": true,
772
- "tooltips": false,
773
- "prefix": "",
774
- "suffix": "",
775
- "forestPlot": false,
776
- "startingPoint": "0",
777
- "forestPlotAlignRight": false,
778
- "roundToPlace": 0,
779
- "commas": true,
780
- "showInViz": false,
781
- "forestPlotStartingPoint": 0,
782
- "name": "n",
783
- "order": 4
784
- },
785
- "Percentage": {
786
- "label": "Percentage",
787
- "dataTable": false,
788
- "tooltips": false,
789
- "prefix": "",
790
- "suffix": "%",
791
- "forestPlot": false,
792
- "startingPoint": "0",
793
- "forestPlotAlignRight": false,
794
- "roundToPlace": "1",
795
- "commas": false,
796
- "showInViz": false,
797
- "forestPlotStartingPoint": 0,
798
- "name": "Percentage",
799
- "order": 5
800
- },
801
- "95%_CI": {
802
- "label": "95% CI",
803
- "dataTable": true,
804
- "tooltips": false,
805
- "prefix": "",
806
- "suffix": "",
807
- "forestPlot": false,
808
- "startingPoint": "0",
809
- "forestPlotAlignRight": false,
810
- "roundToPlace": 0,
811
- "commas": false,
812
- "showInViz": false,
813
- "forestPlotStartingPoint": 0,
814
- "name": "95%_CI",
815
- "order": 6
816
- },
817
- "Category": {
818
- "name": "Category",
819
- "dataTable": true,
820
- "order": 1
821
- },
822
- "Class": {
823
- "name": "Class",
824
- "dataTable": false
825
- },
826
- "DataSource": {
827
- "name": "DataSource",
828
- "dataTable": false
829
- },
830
- "Data_Type": {
831
- "name": "Data_Type",
832
- "dataTable": false
833
- },
834
- "Dataset": {
835
- "name": "Dataset",
836
- "dataTable": false
837
- },
838
- "Footnotes": {
839
- "name": "Footnotes",
840
- "dataTable": false
841
- },
842
- "GeoLocation_Lat": {
843
- "name": "GeoLocation_Lat",
844
- "dataTable": false
845
- },
846
- "GeoLocation_Long": {
847
- "name": "GeoLocation_Long",
848
- "dataTable": false
849
- },
850
- "High_CI": {
851
- "name": "High_CI",
852
- "dataTable": false
853
- },
854
- "LocationCategory": {
855
- "name": "LocationCategory",
856
- "dataTable": false
857
- },
858
- "Low_CI": {
859
- "name": "Low_CI",
860
- "dataTable": false
861
- },
862
- "Question": {
863
- "name": "Question",
864
- "dataTable": false
865
- },
866
- "State": {
867
- "name": "State",
868
- "dataTable": false
869
- },
870
- "State_Abbr": {
871
- "name": "State_Abbr",
872
- "dataTable": false
873
- },
874
- "Topic": {
875
- "name": "Topic",
876
- "dataTable": false
877
- },
878
- "Year": {
879
- "name": "Year",
880
- "dataTable": false
881
- },
882
- "createdon": {
883
- "name": "createdon",
884
- "dataTable": true
885
- },
886
- "Subcategory_Filter": {
887
- "name": "Subcategory_Filter",
888
- "dataTable": true
889
- },
890
- "Category_DisplayOrder": {
891
- "name": "Category_DisplayOrder",
892
- "dataTable": false
893
- },
894
- "Subcategory_DisplayOrder": {
895
- "name": "Subcategory_DisplayOrder",
896
- "dataTable": false
897
- },
898
- "BreakOutCategoryId": {
899
- "name": "BreakOutCategoryId",
900
- "dataTable": false
901
- },
902
- "BreakOutId": {
903
- "name": "BreakOutId",
904
- "dataTable": false
905
- },
906
- "ClassId": {
907
- "name": "ClassId",
908
- "dataTable": false
909
- },
910
- "Class_DisplayOrder": {
911
- "name": "Class_DisplayOrder",
912
- "dataTable": false
913
- },
914
- "LocationId": {
915
- "name": "LocationId",
916
- "dataTable": false
917
- },
918
- "Location_DisplayOrder": {
919
- "name": "Location_DisplayOrder",
920
- "dataTable": false
921
- },
922
- "Createdon": {
923
- "name": "Createdon",
924
- "dataTable": false
925
- },
926
- "QuestionId": {
927
- "name": "QuestionId",
928
- "dataTable": false
929
- },
930
- "Question_DisplayOrder": {
931
- "name": "Question_DisplayOrder",
932
- "dataTable": false
933
- },
934
- "ResponseId": {
935
- "name": "ResponseId",
936
- "dataTable": false
937
- },
938
- "Response_DisplayOrder": {
939
- "name": "Response_DisplayOrder",
940
- "dataTable": false
941
- },
942
- "TopicId": {
943
- "name": "TopicId",
944
- "dataTable": false
945
- },
946
- "Topic_DisplayOrder": {
947
- "name": "Topic_DisplayOrder",
948
- "dataTable": false
949
- },
950
- "Question_Year": {
951
- "name": "Question_Year",
952
- "dataTable": false
953
- },
954
- "Response_Filter": {
955
- "name": "Response_Filter",
956
- "dataTable": false
957
- },
958
- "Series": {
959
- "name": "Series",
960
- "dataTable": false
961
- },
962
- "Year_Pivot_Display": {
963
- "name": "Year_Pivot_Display",
964
- "dataTable": false
965
- },
966
- "Footnotes_Symbol": {
967
- "name": "Footnotes_Symbol",
968
- "dataTable": false
969
- },
970
- "Percentage_Format": {
971
- "name": "Percentage_Format",
972
- "dataTable": false
973
- },
974
- "Data_Value_Format": {
975
- "label": "Percentage (%)",
976
- "dataTable": true,
977
- "tooltips": false,
978
- "prefix": "",
979
- "suffix": "",
980
- "forestPlot": false,
981
- "startingPoint": "0",
982
- "forestPlotAlignRight": false,
983
- "roundToPlace": "1",
984
- "commas": false,
985
- "showInViz": false,
986
- "forestPlotStartingPoint": 0,
987
- "name": "Data_Value_Format",
988
- "order": 5
989
- },
990
- "Question_Code": {
991
- "name": "Question_Code",
992
- "dataTable": false
993
- },
994
- "Series_DisplayOrder": {
995
- "name": "Series_DisplayOrder",
996
- "dataTable": false
997
- },
998
- "State_Code": {
999
- "name": "State_Code",
1000
- "dataTable": false
1001
- }
1002
- },
1003
- "dataFormat": {},
1004
- "visualizationType": "table",
1005
- "dataDescription": {
1006
- "horizontal": false,
1007
- "series": false
1008
- },
1009
- "dataKey": "Single Year",
1010
- "general": {},
1011
- "footnotes": {
1012
- "dataKey": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
1013
- "dynamicFootnotes": {
1014
- "textColumn": "Footnotes",
1015
- "orderColumn": "Footnotes",
1016
- "symbolColumn": "Footnotes_Symbol"
1017
- },
1018
- "staticFootnotes": [
1019
- {
1020
- "text": "The ordering of subcategory rows in the table view may vary across responses."
1021
- }
1022
- ]
1023
- }
1024
- },
1025
- "markup-include1729109453998": {
1026
- "filters": [],
1027
- "filterBehavior": "Filter Change",
1028
- "openModal": false,
1029
- "uid": "markup-include1729109453998",
1030
- "type": "markup-include",
1031
- "contentEditor": {
1032
- "inlineHTML": "<h2 class=\"mb-3\">{{Question}}</h2>\n<h3><em>{{Class}}: {{Topic}}</em></h3>",
1033
- "markupVariables": [
1034
- {
1035
- "columnName": "Question",
1036
- "conditions": [],
1037
- "name": "Question",
1038
- "tag": "{{Question}}"
1039
- },
1040
- {
1041
- "columnName": "Class",
1042
- "conditions": [],
1043
- "name": "Class",
1044
- "tag": "{{Class}}"
1045
- },
1046
- {
1047
- "columnName": "Topic",
1048
- "conditions": [],
1049
- "name": "Topic",
1050
- "tag": "{{Topic}}"
1051
- }
1052
- ],
1053
- "showHeader": true,
1054
- "srcUrl": "#example",
1055
- "title": "",
1056
- "useInlineHTML": true,
1057
- "allowHideSection": true
1058
- },
1059
- "theme": "theme-blue",
1060
- "visual": {
1061
- "border": false,
1062
- "accent": false,
1063
- "background": false,
1064
- "hideBackgroundColor": false,
1065
- "borderColorTheme": false
1066
- },
1067
- "showEditorPanel": true,
1068
- "visualizationType": "markup-include",
1069
- "version": "4.24.10",
1070
- "dataDescription": {
1071
- "horizontal": false,
1072
- "series": false
1073
- },
1074
- "dataKey": "Explore by Location Full"
1075
- },
1076
- "dashboardFilters1729110055542": {
1077
- "filters": [],
1078
- "filterBehavior": "Filter Change",
1079
- "newViz": true,
1080
- "openModal": true,
1081
- "uid": "dashboardFilters1729110055542",
1082
- "type": "dashboardFilters",
1083
- "sharedFilterIndexes": [
1084
- 6,
1085
- 7
1086
- ],
1087
- "visualizationType": "dashboardFilters",
1088
- "autoLoad": true
1089
- },
1090
- "dashboardFilters1729110055653": {
1091
- "filters": [],
1092
- "filterBehavior": "Filter Change",
1093
- "newViz": true,
1094
- "openModal": true,
1095
- "uid": "dashboardFilters1729110055653",
1096
- "type": "dashboardFilters",
1097
- "sharedFilterIndexes": [],
1098
- "visualizationType": "dashboardFilters",
1099
- "autoLoad": true
1100
- },
1101
- "dashboardFilters1729110083267": {
1102
- "filters": [],
1103
- "filterBehavior": "Apply Button",
1104
- "newViz": true,
1105
- "openModal": true,
1106
- "uid": "dashboardFilters1729110083267",
1107
- "type": "dashboardFilters",
1108
- "sharedFilterIndexes": [
1109
- 0,
1110
- 1,
1111
- 2,
1112
- 3,
1113
- 4,
1114
- 5
1115
- ],
1116
- "visualizationType": "dashboardFilters",
1117
- "applyFiltersButtonText": "View Results"
1118
- },
1119
- "markup-include1729199113607": {
1120
- "filters": [],
1121
- "filterBehavior": "Filter Change",
1122
- "openModal": false,
1123
- "uid": "markup-include1729199113607",
1124
- "type": "markup-include",
1125
- "contentEditor": {
1126
- "inlineHTML": "<h3>All Available Years, {{State}}</h3>",
1127
- "markupVariables": [
1128
- {
1129
- "columnName": "State",
1130
- "conditions": [],
1131
- "name": "State",
1132
- "tag": "{{State}}"
1133
- }
1134
- ],
1135
- "showHeader": true,
1136
- "srcUrl": "#example",
1137
- "title": "",
1138
- "useInlineHTML": true,
1139
- "allowHideSection": true
1140
- },
1141
- "theme": "theme-blue",
1142
- "visual": {
1143
- "border": false,
1144
- "accent": false,
1145
- "background": true,
1146
- "hideBackgroundColor": false,
1147
- "borderColorTheme": false
1148
- },
1149
- "showEditorPanel": true,
1150
- "visualizationType": "markup-include",
1151
- "version": "4.24.10",
1152
- "dataDescription": {
1153
- "horizontal": false
1154
- },
1155
- "dataKey": "Explore by Location Full"
1156
- },
1157
- "chart1729199128590": {
1158
- "annotations": [],
1159
- "allowLineToBarGraph": false,
1160
- "type": "chart",
1161
- "debugSvg": false,
1162
- "chartMessage": {
1163
- "noData": "No Data Available"
1164
- },
1165
- "title": "",
1166
- "showTitle": false,
1167
- "showDownloadMediaButton": false,
1168
- "theme": "theme-blue",
1169
- "animate": false,
1170
- "fontSize": "medium",
1171
- "lineDatapointStyle": "always show",
1172
- "lineDatapointColor": "Same as Line",
1173
- "barHasBorder": "false",
1174
- "isLollipopChart": false,
1175
- "lollipopShape": "circle",
1176
- "lollipopColorStyle": "two-tone",
1177
- "visualizationSubType": "regular",
1178
- "barStyle": "flat",
1179
- "roundingStyle": "standard",
1180
- "tipRounding": "top",
1181
- "isResponsiveTicks": false,
1182
- "general": {
1183
- "annotationDropdownText": "Annotations",
1184
- "showMissingDataLabel": false,
1185
- "showSuppressedSymbol": true,
1186
- "showZeroValueData": true,
1187
- "hideNullValue": true
1188
- },
1189
- "padding": {
1190
- "left": 5,
1191
- "right": 5
1192
- },
1193
- "preliminaryData": [],
1194
- "yAxis": {
1195
- "hideAxis": false,
1196
- "displayNumbersOnBar": false,
1197
- "hideLabel": false,
1198
- "hideTicks": false,
1199
- "size": "90",
1200
- "gridLines": false,
1201
- "enablePadding": true,
1202
- "min": "0",
1203
- "max": "",
1204
- "labelColor": "#333",
1205
- "tickLabelColor": "#333",
1206
- "tickColor": "#333",
1207
- "rightHideAxis": true,
1208
- "rightAxisSize": 0,
1209
- "rightLabel": "",
1210
- "rightLabelOffsetSize": 0,
1211
- "rightAxisLabelColor": "#333",
1212
- "rightAxisTickLabelColor": "#333",
1213
- "rightAxisTickColor": "#333",
1214
- "numTicks": "10",
1215
- "axisPadding": 0,
1216
- "scalePadding": "10",
1217
- "tickRotation": 0,
1218
- "anchors": [],
1219
- "shoMissingDataLabel": true,
1220
- "showMissingDataLine": true,
1221
- "categories": [],
1222
- "label": "Percentage",
1223
- "labelPlacement": "Below Bar",
1224
- "labelOffset": "10"
1225
- },
1226
- "boxplot": {
1227
- "plots": [],
1228
- "borders": "true",
1229
- "plotOutlierValues": false,
1230
- "plotNonOutlierValues": true,
1231
- "labels": {
1232
- "q1": "Lower Quartile",
1233
- "q2": "q2",
1234
- "q3": "Upper Quartile",
1235
- "q4": "q4",
1236
- "minimum": "Minimum",
1237
- "maximum": "Maximum",
1238
- "mean": "Mean",
1239
- "median": "Median",
1240
- "sd": "Standard Deviation",
1241
- "iqr": "Interquartile Range",
1242
- "total": "Total",
1243
- "outliers": "Outliers",
1244
- "values": "Values",
1245
- "lowerBounds": "Lower Bounds",
1246
- "upperBounds": "Upper Bounds",
1247
- "count": "Count"
1248
- },
1249
- "firstQuartilePercentage": 25,
1250
- "thirdQuartilePercentage": 75,
1251
- "boxWidthPercentage": 40,
1252
- "legend": {
1253
- "showHowToReadText": false,
1254
- "howToReadText": ""
1255
- }
1256
- },
1257
- "topAxis": {
1258
- "hasLine": false
1259
- },
1260
- "isLegendValue": false,
1261
- "barThickness": 0.35,
1262
- "barHeight": 25,
1263
- "barSpace": 15,
1264
- "heights": {
1265
- "vertical": "450",
1266
- "horizontal": 246.39999999999998
1267
- },
1268
- "xAxis": {
1269
- "sortDates": false,
1270
- "anchors": [],
1271
- "type": "date",
1272
- "showTargetLabel": true,
1273
- "targetLabel": "Target",
1274
- "hideAxis": false,
1275
- "hideLabel": false,
1276
- "hideTicks": false,
1277
- "size": 75,
1278
- "tickRotation": 0,
1279
- "min": "",
1280
- "max": "",
1281
- "labelColor": "#333",
1282
- "tickLabelColor": "#333",
1283
- "tickColor": "#333",
1284
- "numTicks": "10",
1285
- "labelOffset": 0,
1286
- "axisPadding": 200,
1287
- "target": 0,
1288
- "maxTickRotation": 0,
1289
- "padding": 0,
1290
- "showYearsOnce": false,
1291
- "sortByRecentDate": false,
1292
- "dataKey": "Year",
1293
- "axisBBox": 61.8355598449707,
1294
- "tickWidthMax": 39,
1295
- "label": "Year",
1296
- "dateParseFormat": "%Y",
1297
- "manual": true,
1298
- "dateDisplayFormat": "%Y"
1299
- },
1300
- "table": {
1301
- "label": "Data Table",
1302
- "expanded": false,
1303
- "limitHeight": false,
1304
- "height": "",
1305
- "caption": "",
1306
- "showDownloadUrl": false,
1307
- "showDataTableLink": false,
1308
- "showDownloadLinkBelow": true,
1309
- "indexLabel": "",
1310
- "download": true,
1311
- "showVertical": true,
1312
- "dateDisplayFormat": "%Y",
1313
- "showMissingDataLabel": true,
1314
- "showSuppressedSymbol": true,
1315
- "show": false,
1316
- "collapsible": false,
1317
- "showDownloadImgButton": true
1318
- },
1319
- "orientation": "vertical",
1320
- "color": "pinkpurple",
1321
- "columns": {
1322
- "95%_CI": {
1323
- "label": "95% CI",
1324
- "dataTable": true,
1325
- "tooltips": true,
1326
- "prefix": "",
1327
- "suffix": "",
1328
- "forestPlot": false,
1329
- "startingPoint": "0",
1330
- "forestPlotAlignRight": false,
1331
- "roundToPlace": 0,
1332
- "commas": false,
1333
- "showInViz": false,
1334
- "forestPlotStartingPoint": 0,
1335
- "name": "95%_CI",
1336
- "series": "Percentage"
1337
- },
1338
- "n": {
1339
- "label": "n",
1340
- "dataTable": true,
1341
- "tooltips": true,
1342
- "prefix": "",
1343
- "suffix": "",
1344
- "forestPlot": false,
1345
- "startingPoint": "0",
1346
- "forestPlotAlignRight": false,
1347
- "roundToPlace": 0,
1348
- "commas": true,
1349
- "showInViz": false,
1350
- "forestPlotStartingPoint": 0,
1351
- "name": "n",
1352
- "series": "Percentage"
1353
- }
1354
- },
1355
- "legend": {
1356
- "hide": false,
1357
- "behavior": "highlight",
1358
- "axisAlign": true,
1359
- "singleRow": true,
1360
- "colorCode": "Response",
1361
- "reverseLabelOrder": false,
1362
- "description": "",
1363
- "dynamicLegend": false,
1364
- "dynamicLegendDefaultText": "Show All",
1365
- "dynamicLegendItemLimit": 5,
1366
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
1367
- "dynamicLegendChartMessage": "Select Options from the Legend",
1368
- "label": "",
1369
- "lineMode": false,
1370
- "verticalSorted": false,
1371
- "highlightOnHover": false,
1372
- "hideSuppressedLabels": false,
1373
- "hideSuppressionLink": false,
1374
- "seriesHighlight": [],
1375
- "style": "circles",
1376
- "subStyle": "linear blocks",
1377
- "shape": "circle",
1378
- "tickRotation": "",
1379
- "hideBorder": {
1380
- "side": false,
1381
- "topBottom": false
1382
- },
1383
- "position": "bottom",
1384
- "unified": true
1385
- },
1386
- "brush": {
1387
- "height": 25,
1388
- "active": false
1389
- },
1390
- "exclusions": {
1391
- "active": false,
1392
- "keys": []
1393
- },
1394
- "palette": "qualitative-bold",
1395
- "isPaletteReversed": false,
1396
- "twoColor": {
1397
- "palette": "monochrome-1",
1398
- "isPaletteReversed": false
1399
- },
1400
- "labels": false,
1401
- "dataFormat": {
1402
- "commas": false,
1403
- "prefix": "",
1404
- "suffix": "%",
1405
- "abbreviated": false,
1406
- "bottomSuffix": "",
1407
- "bottomPrefix": "",
1408
- "bottomAbbreviated": false,
1409
- "onlyShowTopPrefixSuffix": false,
1410
- "roundTo": "1"
1411
- },
1412
- "confidenceKeys": {
1413
- "upper": "",
1414
- "lower": ""
1415
- },
1416
- "visual": {
1417
- "border": true,
1418
- "accent": true,
1419
- "background": true,
1420
- "verticalHoverLine": true,
1421
- "horizontalHoverLine": false,
1422
- "lineDatapointSymbol": "none",
1423
- "maximumShapeAmount": 7
1424
- },
1425
- "useLogScale": false,
1426
- "filterBehavior": "Filter Change",
1427
- "highlightedBarValues": [],
1428
- "series": [
1429
- {
1430
- "dataKey": "Percentage",
1431
- "type": "Line",
1432
- "axis": "Left",
1433
- "tooltip": true,
1434
- "dynamicCategory": "Series",
1435
- "lineType": "",
1436
- "weight": 1
1437
- }
1438
- ],
1439
- "tooltips": {
1440
- "opacity": 90,
1441
- "singleSeries": false,
1442
- "dateDisplayFormat": "%Y"
1443
- },
1444
- "forestPlot": {
1445
- "startAt": 0,
1446
- "colors": {
1447
- "line": "",
1448
- "shape": ""
1449
- },
1450
- "lineOfNoEffect": {
1451
- "show": true
1452
- },
1453
- "type": "",
1454
- "pooledResult": {
1455
- "diamondHeight": 5,
1456
- "column": ""
1457
- },
1458
- "estimateField": "",
1459
- "estimateRadius": "",
1460
- "shape": "square",
1461
- "rowHeight": 20,
1462
- "description": {
1463
- "show": true,
1464
- "text": "description",
1465
- "location": 0
1466
- },
1467
- "result": {
1468
- "show": true,
1469
- "text": "result",
1470
- "location": 100
1471
- },
1472
- "radius": {
1473
- "min": 2,
1474
- "max": 10,
1475
- "scalingColumn": ""
1476
- },
1477
- "regression": {
1478
- "lower": 0,
1479
- "upper": 0,
1480
- "estimateField": 0
1481
- },
1482
- "leftWidthOffset": 0,
1483
- "rightWidthOffset": 0,
1484
- "showZeroLine": false,
1485
- "leftLabel": "",
1486
- "rightLabel": ""
1487
- },
1488
- "area": {
1489
- "isStacked": false
1490
- },
1491
- "sankey": {
1492
- "title": {
1493
- "defaultColor": "black"
1494
- },
1495
- "iterations": 1,
1496
- "rxValue": 0.9,
1497
- "overallSize": {
1498
- "width": 900,
1499
- "height": 700
1500
- },
1501
- "margin": {
1502
- "margin_y": 25,
1503
- "margin_x": 0
1504
- },
1505
- "nodeSize": {
1506
- "nodeWidth": 26,
1507
- "nodeHeight": 40
1508
- },
1509
- "nodePadding": 55,
1510
- "nodeFontColor": "black",
1511
- "nodeColor": {
1512
- "default": "#ff8500",
1513
- "inactive": "#808080"
1514
- },
1515
- "linkColor": {
1516
- "default": "#ffc900",
1517
- "inactive": "#D3D3D3"
1518
- },
1519
- "opacity": {
1520
- "nodeOpacityDefault": 1,
1521
- "nodeOpacityInactive": 0.1,
1522
- "LinkOpacityDefault": 1,
1523
- "LinkOpacityInactive": 0.1
1524
- },
1525
- "storyNodeFontColor": "#006778",
1526
- "storyNodeText": [],
1527
- "nodeValueStyle": {
1528
- "textBefore": "(",
1529
- "textAfter": ")"
1530
- },
1531
- "data": []
1532
- },
1533
- "filters": [
1534
- {
1535
- "filterStyle": "dropdown",
1536
- "id": 1731078557116,
1537
- "columnName": "Response_Filter",
1538
- "label": "Response",
1539
- "order": "column",
1540
- "orderColumn": "Response_DisplayOrder"
1541
- }
1542
- ],
1543
- "openModal": true,
1544
- "uid": "chart1729199128590",
1545
- "visualizationType": "Line",
1546
- "dataDescription": {
1547
- "horizontal": false,
1548
- "series": false
1549
- },
1550
- "dataKey": "All Available Years Chart",
1551
- "version": "4.25.1",
1552
- "dynamicMarginTop": 0,
1553
- "introText": "",
1554
- "description": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
1555
- "rankByValue": "",
1556
- "migrations": {
1557
- "addColorMigration": true
1558
- },
1559
- "footnotes": {
1560
- "dataKey": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
1561
- "dynamicFootnotes": {
1562
- "textColumn": "Footnotes",
1563
- "symbolColumn": "Footnotes_Symbol"
1564
- }
1565
- }
1566
- },
1567
- "table1729200514531": {
1568
- "filters": [
1569
- {
1570
- "filterStyle": "dropdown",
1571
- "id": 1731078880746,
1572
- "columnName": "Response_Filter",
1573
- "label": "Response",
1574
- "order": "column",
1575
- "orderColumn": "Response_DisplayOrder"
1576
- }
1577
- ],
1578
- "filterBehavior": "Filter Change",
1579
- "newViz": false,
1580
- "openModal": true,
1581
- "uid": "table1729200514531",
1582
- "type": "table",
1583
- "table": {
1584
- "label": "Data Table",
1585
- "show": true,
1586
- "showDownloadUrl": false,
1587
- "showVertical": true,
1588
- "expanded": true,
1589
- "collapsible": false,
1590
- "groupBy": "Year",
1591
- "showDownloadLinkBelow": true,
1592
- "pivot": {
1593
- "columnName": "",
1594
- "valueColumns": [
1595
- "Series"
1596
- ]
1597
- },
1598
- "limitHeight": true,
1599
- "height": "1252",
1600
- "sharedFilterColumns": [
1601
- "Dataset",
1602
- "-Select Location-",
1603
- "State",
1604
- "Class",
1605
- "Topic",
1606
- "Question_Year",
1607
- "Question",
1608
- "Category",
1609
- "Data_Type"
1610
- ],
1611
- "download": false
1612
- },
1613
- "columns": {
1614
- "95%_CI": {
1615
- "name": "95%_CI",
1616
- "dataTable": true,
1617
- "label": "95% CI",
1618
- "order": 5
1619
- },
1620
- "Category": {
1621
- "name": "Category",
1622
- "dataTable": false
1623
- },
1624
- "Class": {
1625
- "name": "Class",
1626
- "dataTable": false
1627
- },
1628
- "DataSource": {
1629
- "name": "DataSource",
1630
- "dataTable": false
1631
- },
1632
- "Data_Type": {
1633
- "name": "Data_Type",
1634
- "dataTable": false
1635
- },
1636
- "Dataset": {
1637
- "name": "Dataset",
1638
- "dataTable": false
1639
- },
1640
- "Footnotes": {
1641
- "name": "Footnotes",
1642
- "dataTable": false
1643
- },
1644
- "GeoLocation_Lat": {
1645
- "name": "GeoLocation_Lat",
1646
- "dataTable": false
1647
- },
1648
- "GeoLocation_Long": {
1649
- "name": "GeoLocation_Long",
1650
- "dataTable": false
1651
- },
1652
- "High_CI": {
1653
- "name": "High_CI",
1654
- "dataTable": false
1655
- },
1656
- "LocationCategory": {
1657
- "name": "LocationCategory",
1658
- "dataTable": false
1659
- },
1660
- "Low_CI": {
1661
- "name": "Low_CI",
1662
- "dataTable": false
1663
- },
1664
- "Question": {
1665
- "name": "Question",
1666
- "dataTable": false
1667
- },
1668
- "State": {
1669
- "name": "State",
1670
- "dataTable": false
1671
- },
1672
- "State_Abbr": {
1673
- "name": "State_Abbr",
1674
- "dataTable": false
1675
- },
1676
- "Subcategory": {
1677
- "name": "Subcategory",
1678
- "dataTable": false,
1679
- "order": 1
1680
- },
1681
- "Topic": {
1682
- "name": "Topic",
1683
- "dataTable": false
1684
- },
1685
- "createdon": {
1686
- "name": "createdon",
1687
- "dataTable": true
1688
- },
1689
- "Response": {
1690
- "label": "Response Old",
1691
- "dataTable": false,
1692
- "tooltips": false,
1693
- "prefix": "",
1694
- "suffix": "",
1695
- "forestPlot": false,
1696
- "startingPoint": "0",
1697
- "forestPlotAlignRight": false,
1698
- "roundToPlace": 0,
1699
- "commas": false,
1700
- "showInViz": false,
1701
- "forestPlotStartingPoint": 0,
1702
- "name": "Response",
1703
- "order": 1
1704
- },
1705
- "n": {
1706
- "label": "n",
1707
- "dataTable": true,
1708
- "tooltips": false,
1709
- "prefix": "",
1710
- "suffix": "",
1711
- "forestPlot": false,
1712
- "startingPoint": "0",
1713
- "forestPlotAlignRight": false,
1714
- "roundToPlace": 0,
1715
- "commas": true,
1716
- "showInViz": false,
1717
- "forestPlotStartingPoint": 0,
1718
- "name": "n",
1719
- "order": 2
1720
- },
1721
- "Percentage": {
1722
- "label": "Percentage",
1723
- "dataTable": false,
1724
- "tooltips": false,
1725
- "prefix": "",
1726
- "suffix": "%",
1727
- "forestPlot": false,
1728
- "startingPoint": "0",
1729
- "forestPlotAlignRight": false,
1730
- "roundToPlace": "1",
1731
- "commas": false,
1732
- "showInViz": false,
1733
- "forestPlotStartingPoint": 0,
1734
- "name": "Percentage",
1735
- "order": 3
1736
- },
1737
- "Year": {
1738
- "name": "Year",
1739
- "dataTable": true
1740
- },
1741
- "Subcategory_Filter": {
1742
- "name": "Subcategory_Filter",
1743
- "dataTable": true
1744
- },
1745
- "Category_DisplayOrder": {
1746
- "name": "Category_DisplayOrder",
1747
- "dataTable": false
1748
- },
1749
- "Subcategory_DisplayOrder": {
1750
- "name": "Subcategory_DisplayOrder",
1751
- "dataTable": false
1752
- },
1753
- "BreakOutCategoryId": {
1754
- "name": "BreakOutCategoryId",
1755
- "dataTable": false
1756
- },
1757
- "BreakOutId": {
1758
- "name": "BreakOutId",
1759
- "dataTable": false
1760
- },
1761
- "ClassId": {
1762
- "name": "ClassId",
1763
- "dataTable": false
1764
- },
1765
- "Class_DisplayOrder": {
1766
- "name": "Class_DisplayOrder",
1767
- "dataTable": false
1768
- },
1769
- "Createdon": {
1770
- "name": "Createdon",
1771
- "dataTable": false
1772
- },
1773
- "LocationId": {
1774
- "name": "LocationId",
1775
- "dataTable": false
1776
- },
1777
- "Location_DisplayOrder": {
1778
- "name": "Location_DisplayOrder",
1779
- "dataTable": false
1780
- },
1781
- "QuestionId": {
1782
- "name": "QuestionId",
1783
- "dataTable": false
1784
- },
1785
- "Question_DisplayOrder": {
1786
- "name": "Question_DisplayOrder",
1787
- "dataTable": false
1788
- },
1789
- "ResponseId": {
1790
- "name": "ResponseId",
1791
- "dataTable": false
1792
- },
1793
- "Response_DisplayOrder": {
1794
- "name": "Response_DisplayOrder",
1795
- "dataTable": false
1796
- },
1797
- "TopicId": {
1798
- "name": "TopicId",
1799
- "dataTable": false
1800
- },
1801
- "Topic_DisplayOrder": {
1802
- "name": "Topic_DisplayOrder",
1803
- "dataTable": false
1804
- },
1805
- "Question_Year": {
1806
- "name": "Question_Year",
1807
- "dataTable": false
1808
- },
1809
- "Response_Filter": {
1810
- "name": "Response_Filter",
1811
- "dataTable": false
1812
- },
1813
- "Series": {
1814
- "name": "Series",
1815
- "dataTable": true,
1816
- "order": 1,
1817
- "label": "Year"
1818
- },
1819
- "Year_Pivot_Display": {
1820
- "name": "Year_Pivot_Display",
1821
- "dataTable": false
1822
- },
1823
- "Footnotes_Symbol": {
1824
- "name": "Footnotes_Symbol",
1825
- "dataTable": false
1826
- },
1827
- "Percentage_Format": {
1828
- "name": "Percentage_Format",
1829
- "dataTable": false
1830
- },
1831
- "Data_Value_Format": {
1832
- "label": "Percentage (%)",
1833
- "dataTable": true,
1834
- "tooltips": false,
1835
- "prefix": "",
1836
- "suffix": "",
1837
- "forestPlot": false,
1838
- "startingPoint": "0",
1839
- "forestPlotAlignRight": false,
1840
- "roundToPlace": "1",
1841
- "commas": false,
1842
- "showInViz": false,
1843
- "forestPlotStartingPoint": 0,
1844
- "name": "Data_Value_Format",
1845
- "order": 4
1846
- },
1847
- "Question_Code": {
1848
- "name": "Question_Code",
1849
- "dataTable": false
1850
- },
1851
- "Series_DisplayOrder": {
1852
- "name": "Series_DisplayOrder",
1853
- "dataTable": false
1854
- },
1855
- "State_Code": {
1856
- "name": "State_Code",
1857
- "dataTable": false
1858
- }
1859
- },
1860
- "dataFormat": {},
1861
- "visualizationType": "table",
1862
- "dataDescription": {
1863
- "horizontal": false,
1864
- "series": false
1865
- },
1866
- "dataKey": "All Available Years Table",
1867
- "general": {},
1868
- "footnotes": {
1869
- "dataKey": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
1870
- "dynamicFootnotes": {
1871
- "textColumn": "Footnotes",
1872
- "symbolColumn": "Footnotes_Symbol"
1873
- }
1874
- }
1875
- },
1876
- "markup-include1729518918015": {
1877
- "filters": [],
1878
- "filterBehavior": "Filter Change",
1879
- "openModal": false,
1880
- "uid": "markup-include1729518918015",
1881
- "type": "markup-include",
1882
- "contentEditor": {
1883
- "inlineHTML": "<h3>{{Question_Year}}, {{State}}</h3>",
1884
- "markupVariables": [
1885
- {
1886
- "columnName": "Question_Year",
1887
- "conditions": [],
1888
- "name": "Question_Year",
1889
- "tag": "{{Question_Year}}"
1890
- },
1891
- {
1892
- "columnName": "State",
1893
- "conditions": [],
1894
- "name": "State",
1895
- "tag": "{{State}}"
1896
- }
1897
- ],
1898
- "showHeader": true,
1899
- "srcUrl": "#example",
1900
- "title": "",
1901
- "useInlineHTML": true,
1902
- "allowHideSection": true
1903
- },
1904
- "theme": "theme-blue",
1905
- "visual": {
1906
- "border": false,
1907
- "accent": false,
1908
- "background": true,
1909
- "hideBackgroundColor": false,
1910
- "borderColorTheme": false
1911
- },
1912
- "showEditorPanel": true,
1913
- "visualizationType": "markup-include",
1914
- "version": "4.25.1",
1915
- "dataDescription": {
1916
- "horizontal": false,
1917
- "series": false
1918
- },
1919
- "dataKey": "Explore by Location Full",
1920
- "migrations": {
1921
- "addColorMigration": true
1922
- }
1923
- },
1924
- "dashboardFilters1730734791987": {
1925
- "filters": [],
1926
- "filterBehavior": "Filter Change",
1927
- "newViz": true,
1928
- "openModal": true,
1929
- "uid": "dashboardFilters1730734791987",
1930
- "type": "dashboardFilters",
1931
- "sharedFilterIndexes": [],
1932
- "visualizationType": "dashboardFilters",
1933
- "autoLoad": true
1934
- },
1935
- "markup-include1730737829692": {
1936
- "filters": [],
1937
- "filterBehavior": "Filter Change",
1938
- "openModal": false,
1939
- "uid": "markup-include1730737829692",
1940
- "type": "markup-include",
1941
- "contentEditor": {
1942
- "inlineHTML": "<h4>Suggested Citation</h4>\n<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>",
1943
- "markupVariables": [
1944
- {
1945
- "columnName": "getdate()",
1946
- "conditions": [],
1947
- "name": "AccessedDate",
1948
- "tag": "{{AccessedDate}}"
1949
- }
1950
- ],
1951
- "showHeader": true,
1952
- "srcUrl": "#example",
1953
- "title": "",
1954
- "useInlineHTML": true,
1955
- "allowHideSection": true
1956
- },
1957
- "theme": "theme-blue",
1958
- "visual": {
1959
- "border": false,
1960
- "accent": false,
1961
- "background": false,
1962
- "hideBackgroundColor": false,
1963
- "borderColorTheme": false
1964
- },
1965
- "showEditorPanel": true,
1966
- "visualizationType": "markup-include",
1967
- "version": "4.25.1",
1968
- "dataKey": "Get Date",
1969
- "dataDescription": {
1970
- "horizontal": false,
1971
- "series": false
1972
- },
1973
- "migrations": {
1974
- "addColorMigration": true
1975
- }
1976
- },
1977
- "markup-include1733949172178": {
1978
- "filters": [],
1979
- "filterBehavior": "Filter Change",
1980
- "openModal": false,
1981
- "uid": "markup-include1733949172178",
1982
- "type": "markup-include",
1983
- "contentEditor": {
1984
- "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>",
1985
- "markupVariables": [],
1986
- "showHeader": true,
1987
- "srcUrl": "#example",
1988
- "title": "",
1989
- "useInlineHTML": true
1990
- },
1991
- "theme": "theme-blue",
1992
- "visual": {
1993
- "border": false,
1994
- "accent": false,
1995
- "background": false,
1996
- "hideBackgroundColor": false,
1997
- "borderColorTheme": false
1998
- },
1999
- "showEditorPanel": true,
2000
- "visualizationType": "markup-include",
2001
- "version": "4.25.1",
2002
- "migrations": {
2003
- "addColorMigration": true
2004
- }
2005
- },
2006
- "markup-include1733961395463": {
2007
- "filters": [],
2008
- "filterBehavior": "Filter Change",
2009
- "openModal": false,
2010
- "uid": "markup-include1733961395463",
2011
- "type": "markup-include",
2012
- "contentEditor": {
2013
- "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>",
2014
- "markupVariables": [],
2015
- "showHeader": true,
2016
- "srcUrl": "#example",
2017
- "title": "",
2018
- "useInlineHTML": true
2019
- },
2020
- "theme": "theme-blue",
2021
- "visual": {
2022
- "border": false,
2023
- "accent": false,
2024
- "background": false,
2025
- "hideBackgroundColor": false,
2026
- "borderColorTheme": false
2027
- },
2028
- "showEditorPanel": true,
2029
- "visualizationType": "markup-include",
2030
- "version": "4.24.10"
2031
- },
2032
- "markup-include1737744929946": {
2033
- "filters": [],
2034
- "filterBehavior": "Filter Change",
2035
- "openModal": false,
2036
- "uid": "markup-include1737744929946",
2037
- "type": "markup-include",
2038
- "contentEditor": {
2039
- "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>",
2040
- "markupVariables": [],
2041
- "showHeader": true,
2042
- "srcUrl": "#example",
2043
- "title": "",
2044
- "useInlineHTML": true
2045
- },
2046
- "theme": "theme-blue",
2047
- "visual": {
2048
- "border": false,
2049
- "accent": false,
2050
- "background": false,
2051
- "hideBackgroundColor": false,
2052
- "borderColorTheme": false
2053
- },
2054
- "showEditorPanel": true,
2055
- "visualizationType": "markup-include",
2056
- "version": "4.25.1",
2057
- "migrations": {
2058
- "addColorMigration": true
2059
- }
277
+ ],
278
+ "uuid": 1742565241248
279
+ },
280
+ {
281
+ "columns": [
282
+ {
283
+ "width": 12,
284
+ "widget": "markup-include1733961395463"
2060
285
  }
286
+ ],
287
+ "uuid": 1742565239167
2061
288
  },
2062
- "table": {
289
+ {
290
+ "columns": [
291
+ {
292
+ "width": 12,
293
+ "widget": "markup-include1737744929946"
294
+ }
295
+ ],
296
+ "uuid": 1742565236775
297
+ },
298
+ {
299
+ "columns": [
300
+ {
301
+ "width": 12,
302
+ "widget": "markup-include1730737829692"
303
+ }
304
+ ],
305
+ "dataDescription": {
306
+ "horizontal": false,
307
+ "series": false
308
+ },
309
+ "dataKey": "Get Date",
310
+ "uuid": 1742565234615
311
+ }
312
+ ],
313
+ "visualizations": {
314
+ "chart1729106285960": {
315
+ "annotations": [],
316
+ "type": "chart",
317
+ "debugSvg": false,
318
+ "chartMessage": {
319
+ "noData": "No Data Available"
320
+ },
321
+ "title": "",
322
+ "showTitle": false,
323
+ "showDownloadMediaButton": false,
324
+ "theme": "theme-blue",
325
+ "animate": false,
326
+ "fontSize": "medium",
327
+ "lineDatapointStyle": "hover",
328
+ "lineDatapointColor": "Same as Line",
329
+ "barHasBorder": "false",
330
+ "isLollipopChart": false,
331
+ "lollipopShape": "circle",
332
+ "lollipopColorStyle": "two-tone",
333
+ "visualizationSubType": "regular",
334
+ "barStyle": "flat",
335
+ "roundingStyle": "standard",
336
+ "tipRounding": "top",
337
+ "isResponsiveTicks": true,
338
+ "general": {
339
+ "annotationDropdownText": "Annotations",
340
+ "showDownloadButton": false,
341
+ "showMissingDataLabel": false,
342
+ "showSuppressedSymbol": true,
343
+ "showZeroValueData": true,
344
+ "hideNullValue": true
345
+ },
346
+ "padding": {
347
+ "left": 5,
348
+ "right": 5
349
+ },
350
+ "preliminaryData": [],
351
+ "yAxis": {
352
+ "hideAxis": false,
353
+ "displayNumbersOnBar": false,
354
+ "hideLabel": false,
355
+ "hideTicks": false,
356
+ "size": "90",
357
+ "gridLines": false,
358
+ "enablePadding": true,
359
+ "min": "0",
360
+ "max": "",
361
+ "labelColor": "#333",
362
+ "tickLabelColor": "#333",
363
+ "tickColor": "#333",
364
+ "rightHideAxis": true,
365
+ "rightAxisSize": 0,
366
+ "rightLabel": "",
367
+ "rightLabelOffsetSize": 0,
368
+ "rightAxisLabelColor": "#333",
369
+ "rightAxisTickLabelColor": "#333",
370
+ "rightAxisTickColor": "#333",
371
+ "numTicks": "10",
372
+ "axisPadding": 0,
373
+ "scalePadding": "0",
374
+ "tickRotation": "0",
375
+ "anchors": [],
376
+ "shoMissingDataLabel": true,
377
+ "showMissingDataLine": true,
378
+ "categories": [],
379
+ "label": "Percentage",
380
+ "labelOffset": "0",
381
+ "labelPlacement": "Below Bar"
382
+ },
383
+ "boxplot": {
384
+ "plots": [],
385
+ "borders": "true",
386
+ "plotOutlierValues": false,
387
+ "plotNonOutlierValues": true,
388
+ "labels": {
389
+ "q1": "Lower Quartile",
390
+ "q2": "q2",
391
+ "q3": "Upper Quartile",
392
+ "q4": "q4",
393
+ "minimum": "Minimum",
394
+ "maximum": "Maximum",
395
+ "mean": "Mean",
396
+ "median": "Median",
397
+ "sd": "Standard Deviation",
398
+ "iqr": "Interquartile Range",
399
+ "total": "Total",
400
+ "outliers": "Outliers",
401
+ "values": "Values",
402
+ "lowerBounds": "Lower Bounds",
403
+ "upperBounds": "Upper Bounds",
404
+ "count": "Count"
405
+ },
406
+ "firstQuartilePercentage": 25,
407
+ "thirdQuartilePercentage": 75,
408
+ "boxWidthPercentage": 40,
409
+ "legend": {
410
+ "showHowToReadText": false,
411
+ "howToReadText": ""
412
+ }
413
+ },
414
+ "topAxis": {
415
+ "hasLine": false
416
+ },
417
+ "isLegendValue": false,
418
+ "barThickness": "0.5",
419
+ "barHeight": 25,
420
+ "barSpace": 15,
421
+ "heights": {
422
+ "vertical": "400",
423
+ "horizontal": 409.79999999999995
424
+ },
425
+ "xAxis": {
426
+ "sortDates": false,
427
+ "anchors": [],
428
+ "type": "categorical",
429
+ "showTargetLabel": true,
430
+ "targetLabel": "Target",
431
+ "hideAxis": false,
432
+ "hideLabel": false,
433
+ "hideTicks": false,
434
+ "size": 75,
435
+ "tickRotation": 0,
436
+ "min": "",
437
+ "max": "",
438
+ "labelColor": "#333",
439
+ "tickLabelColor": "#333",
440
+ "tickColor": "#333",
441
+ "numTicks": "",
442
+ "labelOffset": 0,
443
+ "axisPadding": 200,
444
+ "target": 0,
445
+ "maxTickRotation": "30",
446
+ "padding": 0,
447
+ "showYearsOnce": false,
448
+ "sortByRecentDate": false,
449
+ "dataKey": "Response",
450
+ "axisBBox": 39.19990539550781,
451
+ "tickWidthMax": 25,
452
+ "label": "Response"
453
+ },
454
+ "table": {
2063
455
  "label": "Data Table",
456
+ "expanded": false,
457
+ "limitHeight": false,
458
+ "height": "",
459
+ "caption": "",
460
+ "showDownloadUrl": false,
461
+ "showDataTableLink": false,
462
+ "showDownloadLinkBelow": true,
463
+ "indexLabel": "",
464
+ "download": true,
465
+ "showVertical": false,
466
+ "dateDisplayFormat": "",
467
+ "showMissingDataLabel": true,
468
+ "showSuppressedSymbol": true,
2064
469
  "show": false,
470
+ "showDownloadImgButton": true,
471
+ "collapsible": false
472
+ },
473
+ "orientation": "vertical",
474
+ "color": "pinkpurple",
475
+ "columns": {
476
+ "95%_CI": {
477
+ "label": "95% CI",
478
+ "dataTable": true,
479
+ "tooltips": true,
480
+ "prefix": "",
481
+ "suffix": "",
482
+ "forestPlot": false,
483
+ "startingPoint": "0",
484
+ "forestPlotAlignRight": false,
485
+ "roundToPlace": 0,
486
+ "commas": false,
487
+ "showInViz": false,
488
+ "forestPlotStartingPoint": 0,
489
+ "name": "95%_CI",
490
+ "series": ""
491
+ },
492
+ "n": {
493
+ "label": "n",
494
+ "dataTable": true,
495
+ "tooltips": true,
496
+ "prefix": "",
497
+ "suffix": "",
498
+ "forestPlot": false,
499
+ "startingPoint": "0",
500
+ "forestPlotAlignRight": false,
501
+ "roundToPlace": 0,
502
+ "commas": true,
503
+ "showInViz": false,
504
+ "forestPlotStartingPoint": 0,
505
+ "name": "n",
506
+ "series": ""
507
+ }
508
+ },
509
+ "legend": {
510
+ "hide": false,
511
+ "behavior": "highlight",
512
+ "axisAlign": true,
513
+ "singleRow": true,
514
+ "colorCode": "",
515
+ "reverseLabelOrder": false,
516
+ "description": "",
517
+ "dynamicLegend": false,
518
+ "dynamicLegendDefaultText": "Show All",
519
+ "dynamicLegendItemLimit": 5,
520
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
521
+ "dynamicLegendChartMessage": "Select Options from the Legend",
522
+ "label": "",
523
+ "lineMode": false,
524
+ "verticalSorted": true,
525
+ "highlightOnHover": false,
526
+ "hideSuppressedLabels": false,
527
+ "hideSuppressionLink": false,
528
+ "seriesHighlight": [],
529
+ "style": "circles",
530
+ "subStyle": "linear blocks",
531
+ "shape": "circle",
532
+ "tickRotation": "",
533
+ "hideBorder": {
534
+ "side": false,
535
+ "topBottom": false
536
+ },
537
+ "position": "bottom"
538
+ },
539
+ "brush": {
540
+ "height": 25,
541
+ "active": false
542
+ },
543
+ "exclusions": {
544
+ "active": false,
545
+ "keys": []
546
+ },
547
+ "palette": "qualitative-bold",
548
+ "isPaletteReversed": false,
549
+ "twoColor": {
550
+ "palette": "monochrome-1",
551
+ "isPaletteReversed": false
552
+ },
553
+ "labels": false,
554
+ "dataFormat": {
555
+ "commas": false,
556
+ "prefix": "",
557
+ "suffix": "%",
558
+ "abbreviated": false,
559
+ "bottomSuffix": "",
560
+ "bottomPrefix": "",
561
+ "bottomAbbreviated": false,
562
+ "onlyShowTopPrefixSuffix": false,
563
+ "roundTo": "1"
564
+ },
565
+ "confidenceKeys": {
566
+ "upper": "High_CI",
567
+ "lower": "Low_CI"
568
+ },
569
+ "visual": {
570
+ "border": true,
571
+ "accent": true,
572
+ "background": true,
573
+ "verticalHoverLine": false,
574
+ "horizontalHoverLine": false,
575
+ "lineDatapointSymbol": "none",
576
+ "maximumShapeAmount": 7
577
+ },
578
+ "useLogScale": false,
579
+ "filterBehavior": "Filter Change",
580
+ "highlightedBarValues": [],
581
+ "series": [
582
+ {
583
+ "dataKey": "Percentage",
584
+ "type": "Bar",
585
+ "axis": "Left",
586
+ "tooltip": true,
587
+ "dynamicCategory": "Subcategory",
588
+ "name": ""
589
+ }
590
+ ],
591
+ "tooltips": {
592
+ "opacity": 90,
593
+ "singleSeries": true,
594
+ "dateDisplayFormat": ""
595
+ },
596
+ "forestPlot": {
597
+ "startAt": 0,
598
+ "colors": {
599
+ "line": "",
600
+ "shape": ""
601
+ },
602
+ "lineOfNoEffect": {
603
+ "show": true
604
+ },
605
+ "type": "",
606
+ "pooledResult": {
607
+ "diamondHeight": 5,
608
+ "column": ""
609
+ },
610
+ "estimateField": "",
611
+ "estimateRadius": "",
612
+ "shape": "square",
613
+ "rowHeight": 20,
614
+ "description": {
615
+ "show": true,
616
+ "text": "description",
617
+ "location": 0
618
+ },
619
+ "result": {
620
+ "show": true,
621
+ "text": "result",
622
+ "location": 100
623
+ },
624
+ "radius": {
625
+ "min": 2,
626
+ "max": 10,
627
+ "scalingColumn": ""
628
+ },
629
+ "regression": {
630
+ "lower": 0,
631
+ "upper": 0,
632
+ "estimateField": 0
633
+ },
634
+ "leftWidthOffset": 0,
635
+ "rightWidthOffset": 0,
636
+ "showZeroLine": false,
637
+ "leftLabel": "",
638
+ "rightLabel": ""
639
+ },
640
+ "area": {
641
+ "isStacked": false
642
+ },
643
+ "sankey": {
644
+ "title": {
645
+ "defaultColor": "black"
646
+ },
647
+ "iterations": 1,
648
+ "rxValue": 0.9,
649
+ "overallSize": {
650
+ "width": 900,
651
+ "height": 700
652
+ },
653
+ "margin": {
654
+ "margin_y": 25,
655
+ "margin_x": 0
656
+ },
657
+ "nodeSize": {
658
+ "nodeWidth": 26,
659
+ "nodeHeight": 40
660
+ },
661
+ "nodePadding": 55,
662
+ "nodeFontColor": "black",
663
+ "nodeColor": {
664
+ "default": "#ff8500",
665
+ "inactive": "#808080"
666
+ },
667
+ "linkColor": {
668
+ "default": "#ffc900",
669
+ "inactive": "#D3D3D3"
670
+ },
671
+ "opacity": {
672
+ "nodeOpacityDefault": 1,
673
+ "nodeOpacityInactive": 0.1,
674
+ "LinkOpacityDefault": 1,
675
+ "LinkOpacityInactive": 0.1
676
+ },
677
+ "storyNodeFontColor": "#006778",
678
+ "storyNodeText": [],
679
+ "nodeValueStyle": {
680
+ "textBefore": "(",
681
+ "textAfter": ")"
682
+ },
683
+ "data": []
684
+ },
685
+ "filters": [],
686
+ "openModal": true,
687
+ "uid": "chart1729106285960",
688
+ "visualizationType": "Bar",
689
+ "dataDescription": {
690
+ "horizontal": false,
691
+ "series": false
692
+ },
693
+ "dataKey": "Single Year",
694
+ "version": "4.25.1",
695
+ "dynamicMarginTop": 53,
696
+ "description": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
697
+ "rankByValue": "",
698
+ "footnotes": "",
699
+ "migrations": {
700
+ "addColorMigration": true
701
+ }
702
+ },
703
+ "table1729106290803": {
704
+ "filters": [],
705
+ "filterBehavior": "Filter Change",
706
+ "newViz": false,
707
+ "openModal": true,
708
+ "uid": "table1729106290803",
709
+ "type": "table",
710
+ "table": {
711
+ "label": "Data Table",
712
+ "show": true,
2065
713
  "showDownloadUrl": false,
714
+ "showVertical": true,
715
+ "expanded": true,
716
+ "collapsible": false,
717
+ "groupBy": "Response",
718
+ "showDownloadLinkBelow": false,
719
+ "pivot": {
720
+ "columnName": "Category",
721
+ "valueColumns": [
722
+ "Subcategory"
723
+ ]
724
+ },
725
+ "limitHeight": true,
726
+ "height": "1252",
727
+ "caption": "",
728
+ "sharedFilterColumns": [
729
+ "Dataset",
730
+ "-Select Location-",
731
+ "State",
732
+ "Class",
733
+ "Topic",
734
+ "Question_Year",
735
+ "Question",
736
+ "Category",
737
+ "Data_Type"
738
+ ]
739
+ },
740
+ "columns": {
741
+ "Response": {
742
+ "label": "Response",
743
+ "dataTable": true,
744
+ "tooltips": false,
745
+ "prefix": "",
746
+ "suffix": "",
747
+ "forestPlot": false,
748
+ "startingPoint": "0",
749
+ "forestPlotAlignRight": false,
750
+ "roundToPlace": 0,
751
+ "commas": false,
752
+ "showInViz": false,
753
+ "forestPlotStartingPoint": 0,
754
+ "name": "Response",
755
+ "order": 3
756
+ },
757
+ "n": {
758
+ "label": "n",
759
+ "dataTable": true,
760
+ "tooltips": false,
761
+ "prefix": "",
762
+ "suffix": "",
763
+ "forestPlot": false,
764
+ "startingPoint": "0",
765
+ "forestPlotAlignRight": false,
766
+ "roundToPlace": 0,
767
+ "commas": true,
768
+ "showInViz": false,
769
+ "forestPlotStartingPoint": 0,
770
+ "name": "n",
771
+ "order": 4
772
+ },
773
+ "Percentage": {
774
+ "label": "Percentage",
775
+ "dataTable": false,
776
+ "tooltips": false,
777
+ "prefix": "",
778
+ "suffix": "%",
779
+ "forestPlot": false,
780
+ "startingPoint": "0",
781
+ "forestPlotAlignRight": false,
782
+ "roundToPlace": "1",
783
+ "commas": false,
784
+ "showInViz": false,
785
+ "forestPlotStartingPoint": 0,
786
+ "name": "Percentage",
787
+ "order": 5
788
+ },
789
+ "95%_CI": {
790
+ "label": "95% CI",
791
+ "dataTable": true,
792
+ "tooltips": false,
793
+ "prefix": "",
794
+ "suffix": "",
795
+ "forestPlot": false,
796
+ "startingPoint": "0",
797
+ "forestPlotAlignRight": false,
798
+ "roundToPlace": 0,
799
+ "commas": false,
800
+ "showInViz": false,
801
+ "forestPlotStartingPoint": 0,
802
+ "name": "95%_CI",
803
+ "order": 6
804
+ },
805
+ "Category": {
806
+ "name": "Category",
807
+ "dataTable": true,
808
+ "order": 1
809
+ },
810
+ "Class": {
811
+ "name": "Class",
812
+ "dataTable": false
813
+ },
814
+ "DataSource": {
815
+ "name": "DataSource",
816
+ "dataTable": false
817
+ },
818
+ "Data_Type": {
819
+ "name": "Data_Type",
820
+ "dataTable": false
821
+ },
822
+ "Dataset": {
823
+ "name": "Dataset",
824
+ "dataTable": false
825
+ },
826
+ "Footnotes": {
827
+ "name": "Footnotes",
828
+ "dataTable": false
829
+ },
830
+ "GeoLocation_Lat": {
831
+ "name": "GeoLocation_Lat",
832
+ "dataTable": false
833
+ },
834
+ "GeoLocation_Long": {
835
+ "name": "GeoLocation_Long",
836
+ "dataTable": false
837
+ },
838
+ "High_CI": {
839
+ "name": "High_CI",
840
+ "dataTable": false
841
+ },
842
+ "LocationCategory": {
843
+ "name": "LocationCategory",
844
+ "dataTable": false
845
+ },
846
+ "Low_CI": {
847
+ "name": "Low_CI",
848
+ "dataTable": false
849
+ },
850
+ "Question": {
851
+ "name": "Question",
852
+ "dataTable": false
853
+ },
854
+ "State": {
855
+ "name": "State",
856
+ "dataTable": false
857
+ },
858
+ "State_Abbr": {
859
+ "name": "State_Abbr",
860
+ "dataTable": false
861
+ },
862
+ "Topic": {
863
+ "name": "Topic",
864
+ "dataTable": false
865
+ },
866
+ "Year": {
867
+ "name": "Year",
868
+ "dataTable": false
869
+ },
870
+ "createdon": {
871
+ "name": "createdon",
872
+ "dataTable": true
873
+ },
874
+ "Subcategory_Filter": {
875
+ "name": "Subcategory_Filter",
876
+ "dataTable": true
877
+ },
878
+ "Category_DisplayOrder": {
879
+ "name": "Category_DisplayOrder",
880
+ "dataTable": false
881
+ },
882
+ "Subcategory_DisplayOrder": {
883
+ "name": "Subcategory_DisplayOrder",
884
+ "dataTable": false
885
+ },
886
+ "BreakOutCategoryId": {
887
+ "name": "BreakOutCategoryId",
888
+ "dataTable": false
889
+ },
890
+ "BreakOutId": {
891
+ "name": "BreakOutId",
892
+ "dataTable": false
893
+ },
894
+ "ClassId": {
895
+ "name": "ClassId",
896
+ "dataTable": false
897
+ },
898
+ "Class_DisplayOrder": {
899
+ "name": "Class_DisplayOrder",
900
+ "dataTable": false
901
+ },
902
+ "LocationId": {
903
+ "name": "LocationId",
904
+ "dataTable": false
905
+ },
906
+ "Location_DisplayOrder": {
907
+ "name": "Location_DisplayOrder",
908
+ "dataTable": false
909
+ },
910
+ "Createdon": {
911
+ "name": "Createdon",
912
+ "dataTable": false
913
+ },
914
+ "QuestionId": {
915
+ "name": "QuestionId",
916
+ "dataTable": false
917
+ },
918
+ "Question_DisplayOrder": {
919
+ "name": "Question_DisplayOrder",
920
+ "dataTable": false
921
+ },
922
+ "ResponseId": {
923
+ "name": "ResponseId",
924
+ "dataTable": false
925
+ },
926
+ "Response_DisplayOrder": {
927
+ "name": "Response_DisplayOrder",
928
+ "dataTable": false
929
+ },
930
+ "TopicId": {
931
+ "name": "TopicId",
932
+ "dataTable": false
933
+ },
934
+ "Topic_DisplayOrder": {
935
+ "name": "Topic_DisplayOrder",
936
+ "dataTable": false
937
+ },
938
+ "Question_Year": {
939
+ "name": "Question_Year",
940
+ "dataTable": false
941
+ },
942
+ "Response_Filter": {
943
+ "name": "Response_Filter",
944
+ "dataTable": false
945
+ },
946
+ "Series": {
947
+ "name": "Series",
948
+ "dataTable": false
949
+ },
950
+ "Year_Pivot_Display": {
951
+ "name": "Year_Pivot_Display",
952
+ "dataTable": false
953
+ },
954
+ "Footnotes_Symbol": {
955
+ "name": "Footnotes_Symbol",
956
+ "dataTable": false
957
+ },
958
+ "Percentage_Format": {
959
+ "name": "Percentage_Format",
960
+ "dataTable": false
961
+ },
962
+ "Data_Value_Format": {
963
+ "label": "Percentage (%)",
964
+ "dataTable": true,
965
+ "tooltips": false,
966
+ "prefix": "",
967
+ "suffix": "",
968
+ "forestPlot": false,
969
+ "startingPoint": "0",
970
+ "forestPlotAlignRight": false,
971
+ "roundToPlace": "1",
972
+ "commas": false,
973
+ "showInViz": false,
974
+ "forestPlotStartingPoint": 0,
975
+ "name": "Data_Value_Format",
976
+ "order": 5
977
+ },
978
+ "Question_Code": {
979
+ "name": "Question_Code",
980
+ "dataTable": false
981
+ },
982
+ "Series_DisplayOrder": {
983
+ "name": "Series_DisplayOrder",
984
+ "dataTable": false
985
+ },
986
+ "State_Code": {
987
+ "name": "State_Code",
988
+ "dataTable": false
989
+ }
990
+ },
991
+ "dataFormat": {},
992
+ "visualizationType": "table",
993
+ "dataDescription": {
994
+ "horizontal": false,
995
+ "series": false
996
+ },
997
+ "dataKey": "Single Year",
998
+ "general": {
999
+ "showDownloadButton": false
1000
+ }
1001
+ },
1002
+ "markup-include1729109453998": {
1003
+ "filters": [],
1004
+ "filterBehavior": "Filter Change",
1005
+ "openModal": false,
1006
+ "uid": "markup-include1729109453998",
1007
+ "type": "markup-include",
1008
+ "contentEditor": {
1009
+ "inlineHTML": "<h2 class=\"mb-3\">{{Question}}</h2>\n<h3><em>{{Class}}: {{Topic}}</em></h3>",
1010
+ "markupVariables": [
1011
+ {
1012
+ "columnName": "Question",
1013
+ "conditions": [],
1014
+ "name": "Question",
1015
+ "tag": "{{Question}}"
1016
+ },
1017
+ {
1018
+ "columnName": "Class",
1019
+ "conditions": [],
1020
+ "name": "Class",
1021
+ "tag": "{{Class}}"
1022
+ },
1023
+ {
1024
+ "columnName": "Topic",
1025
+ "conditions": [],
1026
+ "name": "Topic",
1027
+ "tag": "{{Topic}}"
1028
+ }
1029
+ ],
1030
+ "showHeader": true,
1031
+ "srcUrl": "#example",
1032
+ "title": "",
1033
+ "useInlineHTML": true,
1034
+ "allowHideSection": true
1035
+ },
1036
+ "theme": "theme-blue",
1037
+ "visual": {
1038
+ "border": false,
1039
+ "accent": false,
1040
+ "background": false,
1041
+ "hideBackgroundColor": false,
1042
+ "borderColorTheme": false
1043
+ },
1044
+ "showEditorPanel": true,
1045
+ "visualizationType": "markup-include",
1046
+ "version": "4.24.10",
1047
+ "dataDescription": {
1048
+ "horizontal": false,
1049
+ "series": false
1050
+ },
1051
+ "dataKey": "Explore by Location Full"
1052
+ },
1053
+ "dashboardFilters1729110055542": {
1054
+ "filters": [],
1055
+ "filterBehavior": "Filter Change",
1056
+ "newViz": true,
1057
+ "openModal": true,
1058
+ "uid": "dashboardFilters1729110055542",
1059
+ "type": "dashboardFilters",
1060
+ "sharedFilterIndexes": [
1061
+ 6,
1062
+ 7
1063
+ ],
1064
+ "visualizationType": "dashboardFilters",
1065
+ "autoLoad": true
1066
+ },
1067
+ "dashboardFilters1729110055653": {
1068
+ "filters": [],
1069
+ "filterBehavior": "Filter Change",
1070
+ "newViz": true,
1071
+ "openModal": true,
1072
+ "uid": "dashboardFilters1729110055653",
1073
+ "type": "dashboardFilters",
1074
+ "sharedFilterIndexes": [],
1075
+ "visualizationType": "dashboardFilters",
1076
+ "autoLoad": true
1077
+ },
1078
+ "dashboardFilters1729110083267": {
1079
+ "filters": [],
1080
+ "filterBehavior": "Apply Button",
1081
+ "newViz": true,
1082
+ "openModal": true,
1083
+ "uid": "dashboardFilters1729110083267",
1084
+ "type": "dashboardFilters",
1085
+ "sharedFilterIndexes": [
1086
+ 0,
1087
+ 1,
1088
+ 2,
1089
+ 3,
1090
+ 4,
1091
+ 5
1092
+ ],
1093
+ "visualizationType": "dashboardFilters",
1094
+ "applyFiltersButtonText": "View Results"
1095
+ },
1096
+ "markup-include1729199113607": {
1097
+ "filters": [],
1098
+ "filterBehavior": "Filter Change",
1099
+ "openModal": false,
1100
+ "uid": "markup-include1729199113607",
1101
+ "type": "markup-include",
1102
+ "contentEditor": {
1103
+ "inlineHTML": "<h3>All Available Years, {{State}}</h3>",
1104
+ "markupVariables": [
1105
+ {
1106
+ "columnName": "State",
1107
+ "conditions": [],
1108
+ "name": "State",
1109
+ "tag": "{{State}}"
1110
+ }
1111
+ ],
1112
+ "showHeader": true,
1113
+ "srcUrl": "#example",
1114
+ "title": "",
1115
+ "useInlineHTML": true,
1116
+ "allowHideSection": true
1117
+ },
1118
+ "theme": "theme-blue",
1119
+ "visual": {
1120
+ "border": false,
1121
+ "accent": false,
1122
+ "background": true,
1123
+ "hideBackgroundColor": false,
1124
+ "borderColorTheme": false
1125
+ },
1126
+ "showEditorPanel": true,
1127
+ "visualizationType": "markup-include",
1128
+ "version": "4.24.10",
1129
+ "dataDescription": {
1130
+ "horizontal": false
1131
+ },
1132
+ "dataKey": "Explore by Location Full"
1133
+ },
1134
+ "chart1729199128590": {
1135
+ "annotations": [],
1136
+ "allowLineToBarGraph": false,
1137
+ "type": "chart",
1138
+ "debugSvg": false,
1139
+ "chartMessage": {
1140
+ "noData": "No Data Available"
1141
+ },
1142
+ "title": "",
1143
+ "showTitle": false,
1144
+ "showDownloadMediaButton": false,
1145
+ "theme": "theme-blue",
1146
+ "animate": false,
1147
+ "fontSize": "medium",
1148
+ "lineDatapointStyle": "always show",
1149
+ "lineDatapointColor": "Same as Line",
1150
+ "barHasBorder": "false",
1151
+ "isLollipopChart": false,
1152
+ "lollipopShape": "circle",
1153
+ "lollipopColorStyle": "two-tone",
1154
+ "visualizationSubType": "regular",
1155
+ "barStyle": "flat",
1156
+ "roundingStyle": "standard",
1157
+ "tipRounding": "top",
1158
+ "isResponsiveTicks": false,
1159
+ "general": {
1160
+ "annotationDropdownText": "Annotations",
1161
+ "showDownloadButton": false,
1162
+ "showMissingDataLabel": false,
1163
+ "showSuppressedSymbol": true,
1164
+ "showZeroValueData": true,
1165
+ "hideNullValue": true
1166
+ },
1167
+ "padding": {
1168
+ "left": 5,
1169
+ "right": 5
1170
+ },
1171
+ "preliminaryData": [],
1172
+ "yAxis": {
1173
+ "hideAxis": false,
1174
+ "displayNumbersOnBar": false,
1175
+ "hideLabel": false,
1176
+ "hideTicks": false,
1177
+ "size": "90",
1178
+ "gridLines": false,
1179
+ "enablePadding": true,
1180
+ "min": "0",
1181
+ "max": "",
1182
+ "labelColor": "#333",
1183
+ "tickLabelColor": "#333",
1184
+ "tickColor": "#333",
1185
+ "rightHideAxis": true,
1186
+ "rightAxisSize": 0,
1187
+ "rightLabel": "",
1188
+ "rightLabelOffsetSize": 0,
1189
+ "rightAxisLabelColor": "#333",
1190
+ "rightAxisTickLabelColor": "#333",
1191
+ "rightAxisTickColor": "#333",
1192
+ "numTicks": "10",
1193
+ "axisPadding": 0,
1194
+ "scalePadding": "10",
1195
+ "tickRotation": 0,
1196
+ "anchors": [],
1197
+ "shoMissingDataLabel": true,
1198
+ "showMissingDataLine": true,
1199
+ "categories": [],
1200
+ "label": "Percentage",
1201
+ "labelPlacement": "Below Bar",
1202
+ "labelOffset": "10"
1203
+ },
1204
+ "boxplot": {
1205
+ "plots": [],
1206
+ "borders": "true",
1207
+ "plotOutlierValues": false,
1208
+ "plotNonOutlierValues": true,
1209
+ "labels": {
1210
+ "q1": "Lower Quartile",
1211
+ "q2": "q2",
1212
+ "q3": "Upper Quartile",
1213
+ "q4": "q4",
1214
+ "minimum": "Minimum",
1215
+ "maximum": "Maximum",
1216
+ "mean": "Mean",
1217
+ "median": "Median",
1218
+ "sd": "Standard Deviation",
1219
+ "iqr": "Interquartile Range",
1220
+ "total": "Total",
1221
+ "outliers": "Outliers",
1222
+ "values": "Values",
1223
+ "lowerBounds": "Lower Bounds",
1224
+ "upperBounds": "Upper Bounds",
1225
+ "count": "Count"
1226
+ },
1227
+ "firstQuartilePercentage": 25,
1228
+ "thirdQuartilePercentage": 75,
1229
+ "boxWidthPercentage": 40,
1230
+ "legend": {
1231
+ "showHowToReadText": false,
1232
+ "howToReadText": ""
1233
+ }
1234
+ },
1235
+ "topAxis": {
1236
+ "hasLine": false
1237
+ },
1238
+ "isLegendValue": false,
1239
+ "barThickness": 0.35,
1240
+ "barHeight": 25,
1241
+ "barSpace": 15,
1242
+ "heights": {
1243
+ "vertical": "450",
1244
+ "horizontal": 246.39999999999998
1245
+ },
1246
+ "xAxis": {
1247
+ "sortDates": false,
1248
+ "anchors": [],
1249
+ "type": "date",
1250
+ "showTargetLabel": true,
1251
+ "targetLabel": "Target",
1252
+ "hideAxis": false,
1253
+ "hideLabel": false,
1254
+ "hideTicks": false,
1255
+ "size": 75,
1256
+ "tickRotation": 0,
1257
+ "min": "",
1258
+ "max": "",
1259
+ "labelColor": "#333",
1260
+ "tickLabelColor": "#333",
1261
+ "tickColor": "#333",
1262
+ "numTicks": "10",
1263
+ "labelOffset": 0,
1264
+ "axisPadding": 200,
1265
+ "target": 0,
1266
+ "maxTickRotation": 0,
1267
+ "padding": 0,
1268
+ "showYearsOnce": false,
1269
+ "sortByRecentDate": false,
1270
+ "dataKey": "Year",
1271
+ "axisBBox": 61.8355598449707,
1272
+ "tickWidthMax": 39,
1273
+ "label": "Year",
1274
+ "dateParseFormat": "%Y",
1275
+ "manual": true,
1276
+ "dateDisplayFormat": "%Y"
1277
+ },
1278
+ "table": {
1279
+ "label": "Data Table",
1280
+ "expanded": false,
1281
+ "limitHeight": false,
1282
+ "height": "",
1283
+ "caption": "",
1284
+ "showDownloadUrl": false,
1285
+ "showDataTableLink": false,
2066
1286
  "showDownloadLinkBelow": true,
1287
+ "indexLabel": "",
1288
+ "download": true,
2067
1289
  "showVertical": true,
2068
- "download": false
1290
+ "dateDisplayFormat": "%Y",
1291
+ "showMissingDataLabel": true,
1292
+ "showSuppressedSymbol": true,
1293
+ "show": false,
1294
+ "collapsible": false,
1295
+ "showDownloadImgButton": true
1296
+ },
1297
+ "orientation": "vertical",
1298
+ "color": "pinkpurple",
1299
+ "columns": {
1300
+ "95%_CI": {
1301
+ "label": "95% CI",
1302
+ "dataTable": true,
1303
+ "tooltips": true,
1304
+ "prefix": "",
1305
+ "suffix": "",
1306
+ "forestPlot": false,
1307
+ "startingPoint": "0",
1308
+ "forestPlotAlignRight": false,
1309
+ "roundToPlace": 0,
1310
+ "commas": false,
1311
+ "showInViz": false,
1312
+ "forestPlotStartingPoint": 0,
1313
+ "name": "95%_CI",
1314
+ "series": "Percentage"
1315
+ },
1316
+ "n": {
1317
+ "label": "n",
1318
+ "dataTable": true,
1319
+ "tooltips": true,
1320
+ "prefix": "",
1321
+ "suffix": "",
1322
+ "forestPlot": false,
1323
+ "startingPoint": "0",
1324
+ "forestPlotAlignRight": false,
1325
+ "roundToPlace": 0,
1326
+ "commas": true,
1327
+ "showInViz": false,
1328
+ "forestPlotStartingPoint": 0,
1329
+ "name": "n",
1330
+ "series": "Percentage"
1331
+ }
1332
+ },
1333
+ "legend": {
1334
+ "hide": false,
1335
+ "behavior": "highlight",
1336
+ "axisAlign": true,
1337
+ "singleRow": true,
1338
+ "colorCode": "Response",
1339
+ "reverseLabelOrder": false,
1340
+ "description": "",
1341
+ "dynamicLegend": false,
1342
+ "dynamicLegendDefaultText": "Show All",
1343
+ "dynamicLegendItemLimit": 5,
1344
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
1345
+ "dynamicLegendChartMessage": "Select Options from the Legend",
1346
+ "label": "",
1347
+ "lineMode": false,
1348
+ "verticalSorted": false,
1349
+ "highlightOnHover": false,
1350
+ "hideSuppressedLabels": false,
1351
+ "hideSuppressionLink": false,
1352
+ "seriesHighlight": [],
1353
+ "style": "circles",
1354
+ "subStyle": "linear blocks",
1355
+ "shape": "circle",
1356
+ "tickRotation": "",
1357
+ "hideBorder": {
1358
+ "side": false,
1359
+ "topBottom": false
1360
+ },
1361
+ "position": "bottom"
1362
+ },
1363
+ "brush": {
1364
+ "height": 25,
1365
+ "active": false
1366
+ },
1367
+ "exclusions": {
1368
+ "active": false,
1369
+ "keys": []
1370
+ },
1371
+ "palette": "qualitative-bold",
1372
+ "isPaletteReversed": false,
1373
+ "twoColor": {
1374
+ "palette": "monochrome-1",
1375
+ "isPaletteReversed": false
1376
+ },
1377
+ "labels": false,
1378
+ "dataFormat": {
1379
+ "commas": false,
1380
+ "prefix": "",
1381
+ "suffix": "%",
1382
+ "abbreviated": false,
1383
+ "bottomSuffix": "",
1384
+ "bottomPrefix": "",
1385
+ "bottomAbbreviated": false,
1386
+ "onlyShowTopPrefixSuffix": false,
1387
+ "roundTo": "1"
1388
+ },
1389
+ "confidenceKeys": {
1390
+ "upper": "",
1391
+ "lower": ""
1392
+ },
1393
+ "visual": {
1394
+ "border": true,
1395
+ "accent": true,
1396
+ "background": true,
1397
+ "verticalHoverLine": true,
1398
+ "horizontalHoverLine": false,
1399
+ "lineDatapointSymbol": "none",
1400
+ "maximumShapeAmount": 7
1401
+ },
1402
+ "useLogScale": false,
1403
+ "filterBehavior": "Filter Change",
1404
+ "highlightedBarValues": [],
1405
+ "series": [
1406
+ {
1407
+ "dataKey": "Percentage",
1408
+ "type": "Line",
1409
+ "axis": "Left",
1410
+ "tooltip": true,
1411
+ "dynamicCategory": "Series",
1412
+ "lineType": "",
1413
+ "weight": 1
1414
+ }
1415
+ ],
1416
+ "tooltips": {
1417
+ "opacity": 90,
1418
+ "singleSeries": false,
1419
+ "dateDisplayFormat": "%Y"
1420
+ },
1421
+ "forestPlot": {
1422
+ "startAt": 0,
1423
+ "colors": {
1424
+ "line": "",
1425
+ "shape": ""
1426
+ },
1427
+ "lineOfNoEffect": {
1428
+ "show": true
1429
+ },
1430
+ "type": "",
1431
+ "pooledResult": {
1432
+ "diamondHeight": 5,
1433
+ "column": ""
1434
+ },
1435
+ "estimateField": "",
1436
+ "estimateRadius": "",
1437
+ "shape": "square",
1438
+ "rowHeight": 20,
1439
+ "description": {
1440
+ "show": true,
1441
+ "text": "description",
1442
+ "location": 0
1443
+ },
1444
+ "result": {
1445
+ "show": true,
1446
+ "text": "result",
1447
+ "location": 100
1448
+ },
1449
+ "radius": {
1450
+ "min": 2,
1451
+ "max": 10,
1452
+ "scalingColumn": ""
1453
+ },
1454
+ "regression": {
1455
+ "lower": 0,
1456
+ "upper": 0,
1457
+ "estimateField": 0
1458
+ },
1459
+ "leftWidthOffset": 0,
1460
+ "rightWidthOffset": 0,
1461
+ "showZeroLine": false,
1462
+ "leftLabel": "",
1463
+ "rightLabel": ""
1464
+ },
1465
+ "area": {
1466
+ "isStacked": false
1467
+ },
1468
+ "sankey": {
1469
+ "title": {
1470
+ "defaultColor": "black"
1471
+ },
1472
+ "iterations": 1,
1473
+ "rxValue": 0.9,
1474
+ "overallSize": {
1475
+ "width": 900,
1476
+ "height": 700
1477
+ },
1478
+ "margin": {
1479
+ "margin_y": 25,
1480
+ "margin_x": 0
1481
+ },
1482
+ "nodeSize": {
1483
+ "nodeWidth": 26,
1484
+ "nodeHeight": 40
1485
+ },
1486
+ "nodePadding": 55,
1487
+ "nodeFontColor": "black",
1488
+ "nodeColor": {
1489
+ "default": "#ff8500",
1490
+ "inactive": "#808080"
1491
+ },
1492
+ "linkColor": {
1493
+ "default": "#ffc900",
1494
+ "inactive": "#D3D3D3"
1495
+ },
1496
+ "opacity": {
1497
+ "nodeOpacityDefault": 1,
1498
+ "nodeOpacityInactive": 0.1,
1499
+ "LinkOpacityDefault": 1,
1500
+ "LinkOpacityInactive": 0.1
1501
+ },
1502
+ "storyNodeFontColor": "#006778",
1503
+ "storyNodeText": [],
1504
+ "nodeValueStyle": {
1505
+ "textBefore": "(",
1506
+ "textAfter": ")"
1507
+ },
1508
+ "data": []
1509
+ },
1510
+ "filters": [
1511
+ {
1512
+ "filterStyle": "dropdown",
1513
+ "id": 1731078557116,
1514
+ "columnName": "Response_Filter",
1515
+ "label": "Response",
1516
+ "order": "column",
1517
+ "orderColumn": "Response_DisplayOrder"
1518
+ }
1519
+ ],
1520
+ "openModal": true,
1521
+ "uid": "chart1729199128590",
1522
+ "visualizationType": "Line",
1523
+ "dataDescription": {
1524
+ "horizontal": false,
1525
+ "series": false
1526
+ },
1527
+ "dataKey": "All Available Years Chart",
1528
+ "version": "4.25.1",
1529
+ "dynamicMarginTop": 0,
1530
+ "introText": "",
1531
+ "description": "<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>",
1532
+ "rankByValue": "",
1533
+ "migrations": {
1534
+ "addColorMigration": true
1535
+ }
2069
1536
  },
2070
- "datasets": {
2071
- "Explore by Location Full": {
2072
- "dataFileSize": 1292219,
2073
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000",
2074
- "dataFileSourceType": "url",
2075
- "dataFileFormat": "JSON",
2076
- "preview": false,
2077
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000"
2078
- },
2079
- "Explore by Location Full 2": {
2080
- "dataFileSize": 1292219,
2081
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2001",
2082
- "dataFileSourceType": "url",
2083
- "dataFileFormat": "JSON",
2084
- "preview": false,
2085
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2001"
2086
- },
2087
- "COVE Footnotes": {
2088
- "dataFileSize": 5489,
2089
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_footnotes",
2090
- "dataFileSourceType": "url",
2091
- "dataFileFormat": "JSON",
2092
- "preview": false,
2093
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_footnotes"
2094
- },
2095
- "Get Date": {
2096
- "dataFileSize": 92002,
2097
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()",
2098
- "dataFileSourceType": "url",
2099
- "dataFileFormat": "JSON",
2100
- "preview": false,
2101
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()"
2102
- },
2103
- "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder": {
2104
- "dataFileSize": 1460434,
2105
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder",
2106
- "dataFileSourceType": "url",
2107
- "dataFileFormat": "JSON",
2108
- "preview": false,
2109
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder"
2110
- },
2111
- "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22": {
2112
- "dataFileSize": 515,
2113
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22",
2114
- "dataFileSourceType": "url",
2115
- "dataFileFormat": "JSON",
2116
- "preview": false,
2117
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22"
2118
- },
2119
- "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22": {
2120
- "dataFileSize": 480,
2121
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22",
2122
- "dataFileSourceType": "url",
2123
- "dataFileFormat": "JSON",
2124
- "preview": false,
2125
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22"
2126
- },
2127
- "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27": {
2128
- "dataFileSize": 1223,
2129
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes_Symbol,Footnotes",
2130
- "dataFileSourceType": "url",
2131
- "dataFileFormat": "JSON",
2132
- "preview": false,
2133
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes_Symbol,Footnotes"
2134
- },
2135
- "Single Year": {
2136
- "dataFileSize": 2697225,
2137
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2009&$where=Year=Question_Year&$order=Response_DisplayOrder,Subcategory_DisplayOrder",
2138
- "dataFileSourceType": "url",
2139
- "dataFileFormat": "JSON",
2140
- "preview": false,
2141
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2009&$where=Year=Question_Year&$order=Response_DisplayOrder,Subcategory_DisplayOrder"
2142
- },
2143
- "All Available Years Table": {
2144
- "dataFileSize": 2530915,
2145
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=-Year,Series_DisplayOrder",
2146
- "dataFileSourceType": "url",
2147
- "dataFileFormat": "JSON",
2148
- "preview": true,
2149
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=-Year,Series_DisplayOrder"
2150
- },
2151
- "All Available Years Chart": {
2152
- "dataFileSize": 2629767,
2153
- "dataFileName": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Series_DisplayOrder",
2154
- "dataFileSourceType": "url",
2155
- "dataFileFormat": "JSON",
2156
- "preview": false,
2157
- "dataUrl": "https://nccd-proxy-qa.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Series_DisplayOrder"
1537
+ "table1729200514531": {
1538
+ "filters": [
1539
+ {
1540
+ "filterStyle": "dropdown",
1541
+ "id": 1731078880746,
1542
+ "columnName": "Response_Filter",
1543
+ "label": "Response",
1544
+ "order": "column",
1545
+ "orderColumn": "Response_DisplayOrder"
2158
1546
  }
1547
+ ],
1548
+ "filterBehavior": "Filter Change",
1549
+ "newViz": false,
1550
+ "openModal": true,
1551
+ "uid": "table1729200514531",
1552
+ "type": "table",
1553
+ "table": {
1554
+ "label": "Data Table",
1555
+ "show": true,
1556
+ "showDownloadUrl": false,
1557
+ "showVertical": true,
1558
+ "expanded": true,
1559
+ "collapsible": false,
1560
+ "groupBy": "Year",
1561
+ "showDownloadLinkBelow": true,
1562
+ "pivot": {
1563
+ "columnName": "",
1564
+ "valueColumns": [
1565
+ "Series"
1566
+ ]
1567
+ },
1568
+ "limitHeight": true,
1569
+ "height": "1252",
1570
+ "sharedFilterColumns": [
1571
+ "Dataset",
1572
+ "-Select Location-",
1573
+ "State",
1574
+ "Class",
1575
+ "Topic",
1576
+ "Question_Year",
1577
+ "Question",
1578
+ "Category",
1579
+ "Data_Type"
1580
+ ]
1581
+ },
1582
+ "columns": {
1583
+ "95%_CI": {
1584
+ "name": "95%_CI",
1585
+ "dataTable": true,
1586
+ "label": "95% CI",
1587
+ "order": 5
1588
+ },
1589
+ "Category": {
1590
+ "name": "Category",
1591
+ "dataTable": false
1592
+ },
1593
+ "Class": {
1594
+ "name": "Class",
1595
+ "dataTable": false
1596
+ },
1597
+ "DataSource": {
1598
+ "name": "DataSource",
1599
+ "dataTable": false
1600
+ },
1601
+ "Data_Type": {
1602
+ "name": "Data_Type",
1603
+ "dataTable": false
1604
+ },
1605
+ "Dataset": {
1606
+ "name": "Dataset",
1607
+ "dataTable": false
1608
+ },
1609
+ "Footnotes": {
1610
+ "name": "Footnotes",
1611
+ "dataTable": false
1612
+ },
1613
+ "GeoLocation_Lat": {
1614
+ "name": "GeoLocation_Lat",
1615
+ "dataTable": false
1616
+ },
1617
+ "GeoLocation_Long": {
1618
+ "name": "GeoLocation_Long",
1619
+ "dataTable": false
1620
+ },
1621
+ "High_CI": {
1622
+ "name": "High_CI",
1623
+ "dataTable": false
1624
+ },
1625
+ "LocationCategory": {
1626
+ "name": "LocationCategory",
1627
+ "dataTable": false
1628
+ },
1629
+ "Low_CI": {
1630
+ "name": "Low_CI",
1631
+ "dataTable": false
1632
+ },
1633
+ "Question": {
1634
+ "name": "Question",
1635
+ "dataTable": false
1636
+ },
1637
+ "State": {
1638
+ "name": "State",
1639
+ "dataTable": false
1640
+ },
1641
+ "State_Abbr": {
1642
+ "name": "State_Abbr",
1643
+ "dataTable": false
1644
+ },
1645
+ "Subcategory": {
1646
+ "name": "Subcategory",
1647
+ "dataTable": false,
1648
+ "order": 1
1649
+ },
1650
+ "Topic": {
1651
+ "name": "Topic",
1652
+ "dataTable": false
1653
+ },
1654
+ "createdon": {
1655
+ "name": "createdon",
1656
+ "dataTable": true
1657
+ },
1658
+ "Response": {
1659
+ "label": "Response Old",
1660
+ "dataTable": false,
1661
+ "tooltips": false,
1662
+ "prefix": "",
1663
+ "suffix": "",
1664
+ "forestPlot": false,
1665
+ "startingPoint": "0",
1666
+ "forestPlotAlignRight": false,
1667
+ "roundToPlace": 0,
1668
+ "commas": false,
1669
+ "showInViz": false,
1670
+ "forestPlotStartingPoint": 0,
1671
+ "name": "Response",
1672
+ "order": 1
1673
+ },
1674
+ "n": {
1675
+ "label": "n",
1676
+ "dataTable": true,
1677
+ "tooltips": false,
1678
+ "prefix": "",
1679
+ "suffix": "",
1680
+ "forestPlot": false,
1681
+ "startingPoint": "0",
1682
+ "forestPlotAlignRight": false,
1683
+ "roundToPlace": 0,
1684
+ "commas": true,
1685
+ "showInViz": false,
1686
+ "forestPlotStartingPoint": 0,
1687
+ "name": "n",
1688
+ "order": 2
1689
+ },
1690
+ "Percentage": {
1691
+ "label": "Percentage",
1692
+ "dataTable": false,
1693
+ "tooltips": false,
1694
+ "prefix": "",
1695
+ "suffix": "%",
1696
+ "forestPlot": false,
1697
+ "startingPoint": "0",
1698
+ "forestPlotAlignRight": false,
1699
+ "roundToPlace": "1",
1700
+ "commas": false,
1701
+ "showInViz": false,
1702
+ "forestPlotStartingPoint": 0,
1703
+ "name": "Percentage",
1704
+ "order": 3
1705
+ },
1706
+ "Year": {
1707
+ "name": "Year",
1708
+ "dataTable": true
1709
+ },
1710
+ "Subcategory_Filter": {
1711
+ "name": "Subcategory_Filter",
1712
+ "dataTable": true
1713
+ },
1714
+ "Category_DisplayOrder": {
1715
+ "name": "Category_DisplayOrder",
1716
+ "dataTable": false
1717
+ },
1718
+ "Subcategory_DisplayOrder": {
1719
+ "name": "Subcategory_DisplayOrder",
1720
+ "dataTable": false
1721
+ },
1722
+ "BreakOutCategoryId": {
1723
+ "name": "BreakOutCategoryId",
1724
+ "dataTable": false
1725
+ },
1726
+ "BreakOutId": {
1727
+ "name": "BreakOutId",
1728
+ "dataTable": false
1729
+ },
1730
+ "ClassId": {
1731
+ "name": "ClassId",
1732
+ "dataTable": false
1733
+ },
1734
+ "Class_DisplayOrder": {
1735
+ "name": "Class_DisplayOrder",
1736
+ "dataTable": false
1737
+ },
1738
+ "Createdon": {
1739
+ "name": "Createdon",
1740
+ "dataTable": false
1741
+ },
1742
+ "LocationId": {
1743
+ "name": "LocationId",
1744
+ "dataTable": false
1745
+ },
1746
+ "Location_DisplayOrder": {
1747
+ "name": "Location_DisplayOrder",
1748
+ "dataTable": false
1749
+ },
1750
+ "QuestionId": {
1751
+ "name": "QuestionId",
1752
+ "dataTable": false
1753
+ },
1754
+ "Question_DisplayOrder": {
1755
+ "name": "Question_DisplayOrder",
1756
+ "dataTable": false
1757
+ },
1758
+ "ResponseId": {
1759
+ "name": "ResponseId",
1760
+ "dataTable": false
1761
+ },
1762
+ "Response_DisplayOrder": {
1763
+ "name": "Response_DisplayOrder",
1764
+ "dataTable": false
1765
+ },
1766
+ "TopicId": {
1767
+ "name": "TopicId",
1768
+ "dataTable": false
1769
+ },
1770
+ "Topic_DisplayOrder": {
1771
+ "name": "Topic_DisplayOrder",
1772
+ "dataTable": false
1773
+ },
1774
+ "Question_Year": {
1775
+ "name": "Question_Year",
1776
+ "dataTable": false
1777
+ },
1778
+ "Response_Filter": {
1779
+ "name": "Response_Filter",
1780
+ "dataTable": false
1781
+ },
1782
+ "Series": {
1783
+ "name": "Series",
1784
+ "dataTable": true,
1785
+ "order": 1,
1786
+ "label": "Year"
1787
+ },
1788
+ "Year_Pivot_Display": {
1789
+ "name": "Year_Pivot_Display",
1790
+ "dataTable": false
1791
+ },
1792
+ "Footnotes_Symbol": {
1793
+ "name": "Footnotes_Symbol",
1794
+ "dataTable": false
1795
+ },
1796
+ "Percentage_Format": {
1797
+ "name": "Percentage_Format",
1798
+ "dataTable": false
1799
+ },
1800
+ "Data_Value_Format": {
1801
+ "label": "Percentage (%)",
1802
+ "dataTable": true,
1803
+ "tooltips": false,
1804
+ "prefix": "",
1805
+ "suffix": "",
1806
+ "forestPlot": false,
1807
+ "startingPoint": "0",
1808
+ "forestPlotAlignRight": false,
1809
+ "roundToPlace": "1",
1810
+ "commas": false,
1811
+ "showInViz": false,
1812
+ "forestPlotStartingPoint": 0,
1813
+ "name": "Data_Value_Format",
1814
+ "order": 4
1815
+ },
1816
+ "Question_Code": {
1817
+ "name": "Question_Code",
1818
+ "dataTable": false
1819
+ },
1820
+ "Series_DisplayOrder": {
1821
+ "name": "Series_DisplayOrder",
1822
+ "dataTable": false
1823
+ },
1824
+ "State_Code": {
1825
+ "name": "State_Code",
1826
+ "dataTable": false
1827
+ }
1828
+ },
1829
+ "dataFormat": {},
1830
+ "visualizationType": "table",
1831
+ "dataDescription": {
1832
+ "horizontal": false,
1833
+ "series": false
1834
+ },
1835
+ "dataKey": "All Available Years Table",
1836
+ "general": {
1837
+ "showDownloadButton": false
1838
+ }
2159
1839
  },
2160
- "isResponsiveTicks": false,
2161
- "type": "dashboard",
2162
- "barThickness": "0.37",
2163
- "xAxis": {
2164
- "type": "categorical",
2165
- "size": 75,
2166
- "maxTickRotation": 45,
2167
- "labelOffset": 0
1840
+ "markup-include1729518918015": {
1841
+ "filters": [],
1842
+ "filterBehavior": "Filter Change",
1843
+ "openModal": false,
1844
+ "uid": "markup-include1729518918015",
1845
+ "type": "markup-include",
1846
+ "contentEditor": {
1847
+ "inlineHTML": "<h3>{{Question_Year}}, {{State}}</h3>",
1848
+ "markupVariables": [
1849
+ {
1850
+ "columnName": "Question_Year",
1851
+ "conditions": [],
1852
+ "name": "Question_Year",
1853
+ "tag": "{{Question_Year}}"
1854
+ },
1855
+ {
1856
+ "columnName": "State",
1857
+ "conditions": [],
1858
+ "name": "State",
1859
+ "tag": "{{State}}"
1860
+ }
1861
+ ],
1862
+ "showHeader": true,
1863
+ "srcUrl": "#example",
1864
+ "title": "",
1865
+ "useInlineHTML": true,
1866
+ "allowHideSection": true
1867
+ },
1868
+ "theme": "theme-blue",
1869
+ "visual": {
1870
+ "border": false,
1871
+ "accent": false,
1872
+ "background": true,
1873
+ "hideBackgroundColor": false,
1874
+ "borderColorTheme": false
1875
+ },
1876
+ "showEditorPanel": true,
1877
+ "visualizationType": "markup-include",
1878
+ "version": "4.25.1",
1879
+ "dataDescription": {
1880
+ "horizontal": false,
1881
+ "series": false
1882
+ },
1883
+ "dataKey": "Explore by Location Full",
1884
+ "migrations": {
1885
+ "addColorMigration": true
1886
+ }
2168
1887
  },
2169
- "version": "4.25.7",
2170
- "uuid": 1742565135321,
2171
- "migrations": {
1888
+ "dashboardFilters1730734791987": {
1889
+ "filters": [],
1890
+ "filterBehavior": "Filter Change",
1891
+ "newViz": true,
1892
+ "openModal": true,
1893
+ "uid": "dashboardFilters1730734791987",
1894
+ "type": "dashboardFilters",
1895
+ "sharedFilterIndexes": [],
1896
+ "visualizationType": "dashboardFilters",
1897
+ "autoLoad": true
1898
+ },
1899
+ "markup-include1730737829692": {
1900
+ "filters": [],
1901
+ "filterBehavior": "Filter Change",
1902
+ "openModal": false,
1903
+ "uid": "markup-include1730737829692",
1904
+ "type": "markup-include",
1905
+ "contentEditor": {
1906
+ "inlineHTML": "<h4>Suggested Citation</h4>\n<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>",
1907
+ "markupVariables": [
1908
+ {
1909
+ "columnName": "getdate()",
1910
+ "conditions": [],
1911
+ "name": "AccessedDate",
1912
+ "tag": "{{AccessedDate}}"
1913
+ }
1914
+ ],
1915
+ "showHeader": true,
1916
+ "srcUrl": "#example",
1917
+ "title": "",
1918
+ "useInlineHTML": true,
1919
+ "allowHideSection": true
1920
+ },
1921
+ "theme": "theme-blue",
1922
+ "visual": {
1923
+ "border": false,
1924
+ "accent": false,
1925
+ "background": false,
1926
+ "hideBackgroundColor": false,
1927
+ "borderColorTheme": false
1928
+ },
1929
+ "showEditorPanel": true,
1930
+ "visualizationType": "markup-include",
1931
+ "version": "4.25.1",
1932
+ "dataKey": "Get Date",
1933
+ "dataDescription": {
1934
+ "horizontal": false,
1935
+ "series": false
1936
+ },
1937
+ "migrations": {
1938
+ "addColorMigration": true
1939
+ }
1940
+ },
1941
+ "markup-include1733949172178": {
1942
+ "filters": [],
1943
+ "filterBehavior": "Filter Change",
1944
+ "openModal": false,
1945
+ "uid": "markup-include1733949172178",
1946
+ "type": "markup-include",
1947
+ "contentEditor": {
1948
+ "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>",
1949
+ "markupVariables": [],
1950
+ "showHeader": true,
1951
+ "srcUrl": "#example",
1952
+ "title": "",
1953
+ "useInlineHTML": true
1954
+ },
1955
+ "theme": "theme-blue",
1956
+ "visual": {
1957
+ "border": false,
1958
+ "accent": false,
1959
+ "background": false,
1960
+ "hideBackgroundColor": false,
1961
+ "borderColorTheme": false
1962
+ },
1963
+ "showEditorPanel": true,
1964
+ "visualizationType": "markup-include",
1965
+ "version": "4.25.1",
1966
+ "migrations": {
2172
1967
  "addColorMigration": true
1968
+ }
1969
+ },
1970
+ "markup-include1733961395463": {
1971
+ "filters": [],
1972
+ "filterBehavior": "Filter Change",
1973
+ "openModal": false,
1974
+ "uid": "markup-include1733961395463",
1975
+ "type": "markup-include",
1976
+ "contentEditor": {
1977
+ "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>",
1978
+ "markupVariables": [],
1979
+ "showHeader": true,
1980
+ "srcUrl": "#example",
1981
+ "title": "",
1982
+ "useInlineHTML": true
1983
+ },
1984
+ "theme": "theme-blue",
1985
+ "visual": {
1986
+ "border": false,
1987
+ "accent": false,
1988
+ "background": false,
1989
+ "hideBackgroundColor": false,
1990
+ "borderColorTheme": false
1991
+ },
1992
+ "showEditorPanel": true,
1993
+ "visualizationType": "markup-include",
1994
+ "version": "4.24.10"
1995
+ },
1996
+ "footnotes1734104655867": {
1997
+ "uid": "footnotes1734104655867",
1998
+ "type": "footnotes",
1999
+ "visualizationType": "footnotes",
2000
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
2001
+ "dynamicFootnotes": {
2002
+ "textColumn": "Footnotes",
2003
+ "symbolColumn": "Footnotes_Symbol"
2004
+ }
2005
+ },
2006
+ "footnotes1734396315073": {
2007
+ "uid": "footnotes1734396315073",
2008
+ "type": "footnotes",
2009
+ "visualizationType": "footnotes",
2010
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27",
2011
+ "dynamicFootnotes": {
2012
+ "textColumn": "Footnotes",
2013
+ "orderColumn": "Footnotes",
2014
+ "symbolColumn": "Footnotes_Symbol"
2015
+ },
2016
+ "staticFootnotes": [
2017
+ {
2018
+ "text": "The ordering of subcategory rows in the table view may vary across responses."
2019
+ }
2020
+ ]
2021
+ },
2022
+ "markup-include1737744929946": {
2023
+ "filters": [],
2024
+ "filterBehavior": "Filter Change",
2025
+ "openModal": false,
2026
+ "uid": "markup-include1737744929946",
2027
+ "type": "markup-include",
2028
+ "contentEditor": {
2029
+ "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>",
2030
+ "markupVariables": [],
2031
+ "showHeader": true,
2032
+ "srcUrl": "#example",
2033
+ "title": "",
2034
+ "useInlineHTML": true
2035
+ },
2036
+ "theme": "theme-blue",
2037
+ "visual": {
2038
+ "border": false,
2039
+ "accent": false,
2040
+ "background": false,
2041
+ "hideBackgroundColor": false,
2042
+ "borderColorTheme": false
2043
+ },
2044
+ "showEditorPanel": true,
2045
+ "visualizationType": "markup-include",
2046
+ "version": "4.25.1",
2047
+ "migrations": {
2048
+ "addColorMigration": true
2049
+ }
2050
+ }
2051
+ },
2052
+ "table": {
2053
+ "label": "Data Table",
2054
+ "show": false,
2055
+ "showDownloadUrl": false,
2056
+ "showDownloadLinkBelow": true,
2057
+ "showVertical": true,
2058
+ "download": false
2059
+ },
2060
+ "datasets": {
2061
+ "Explore by Location Full": {
2062
+ "dataFileSize": 1292219,
2063
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000",
2064
+ "dataFileSourceType": "url",
2065
+ "dataFileFormat": "JSON",
2066
+ "preview": false,
2067
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000"
2068
+ },
2069
+ "Explore by Location Full 2": {
2070
+ "dataFileSize": 1292219,
2071
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2001",
2072
+ "dataFileSourceType": "url",
2073
+ "dataFileFormat": "JSON",
2074
+ "preview": false,
2075
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2001"
2076
+ },
2077
+ "COVE Footnotes": {
2078
+ "dataFileSize": 5489,
2079
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_footnotes",
2080
+ "dataFileSourceType": "url",
2081
+ "dataFileFormat": "JSON",
2082
+ "preview": false,
2083
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_footnotes"
2084
+ },
2085
+ "Get Date": {
2086
+ "dataFileSize": 92002,
2087
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()",
2088
+ "dataFileSourceType": "url",
2089
+ "dataFileFormat": "JSON",
2090
+ "preview": false,
2091
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()"
2092
+ },
2093
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder": {
2094
+ "dataFileSize": 1460434,
2095
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder",
2096
+ "dataFileSourceType": "url",
2097
+ "dataFileFormat": "JSON",
2098
+ "preview": false,
2099
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Category_DisplayOrder"
2100
+ },
2101
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22": {
2102
+ "dataFileSize": 515,
2103
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22",
2104
+ "dataFileSourceType": "url",
2105
+ "dataFileFormat": "JSON",
2106
+ "preview": false,
2107
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22"
2108
+ },
2109
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22": {
2110
+ "dataFileSize": 480,
2111
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22",
2112
+ "dataFileSourceType": "url",
2113
+ "dataFileFormat": "JSON",
2114
+ "preview": false,
2115
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22"
2116
+ },
2117
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27": {
2118
+ "dataFileSize": 1223,
2119
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes_Symbol,Footnotes",
2120
+ "dataFileSourceType": "url",
2121
+ "dataFileFormat": "JSON",
2122
+ "preview": false,
2123
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=DISTINCT%20Footnotes_Symbol,Footnotes"
2124
+ },
2125
+ "Single Year": {
2126
+ "dataFileSize": 2697225,
2127
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2009&$where=Year=Question_Year&$order=Response_DisplayOrder,Subcategory_DisplayOrder",
2128
+ "dataFileSourceType": "url",
2129
+ "dataFileFormat": "JSON",
2130
+ "preview": false,
2131
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2009&$where=Year=Question_Year&$order=Response_DisplayOrder,Subcategory_DisplayOrder"
2132
+ },
2133
+ "All Available Years Table": {
2134
+ "dataFileSize": 2530915,
2135
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=-Year,Series_DisplayOrder",
2136
+ "dataFileSourceType": "url",
2137
+ "dataFileFormat": "JSON",
2138
+ "preview": true,
2139
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=-Year,Series_DisplayOrder"
2140
+ },
2141
+ "All Available Years Chart": {
2142
+ "dataFileSize": 2629767,
2143
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Series_DisplayOrder",
2144
+ "dataFileSourceType": "url",
2145
+ "dataFileFormat": "JSON",
2146
+ "preview": false,
2147
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$order=Series_DisplayOrder"
2173
2148
  }
2149
+ },
2150
+ "isResponsiveTicks": false,
2151
+ "type": "dashboard",
2152
+ "barThickness": "0.37",
2153
+ "xAxis": {
2154
+ "type": "categorical",
2155
+ "size": 75,
2156
+ "maxTickRotation": 45,
2157
+ "labelOffset": 0
2158
+ },
2159
+ "version": "4.25.1",
2160
+ "uuid": 1742565135321,
2161
+ "migrations": {
2162
+ "addColorMigration": true
2163
+ }
2174
2164
  }