@cdc/dashboard 4.25.8 → 4.25.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/{cdcdashboard-fce76882.es.js → cdcdashboard-BnB1QM5d.es.js} +6 -13
  2. package/dist/{cdcdashboard-c55ac1ea.es.js → cdcdashboard-D6CG2-Hb.es.js} +5 -12
  3. package/dist/{cdcdashboard-31a33da1.es.js → cdcdashboard-MXgURbdZ.es.js} +6 -13
  4. package/dist/{cdcdashboard-1a1724a1.es.js → cdcdashboard-dgT_1dIT.es.js} +136 -151
  5. package/dist/cdcdashboard.js +80040 -75976
  6. package/examples/api-test/categories.json +18 -0
  7. package/examples/api-test/chart-data.json +602 -0
  8. package/examples/api-test/topics.json +47 -0
  9. package/examples/api-test/years.json +22 -0
  10. package/examples/markup-axis-label.json +4167 -0
  11. package/examples/private/DEV-10538.json +407 -0
  12. package/examples/private/DEV-11405.json +39112 -0
  13. package/examples/private/big-dashboard.json +39112 -0
  14. package/examples/private/brfs-2.json +1532 -0
  15. package/examples/private/brfs.json +2128 -2138
  16. package/examples/private/clade-2.json +430 -0
  17. package/examples/private/delete.json +32919 -0
  18. package/examples/private/diabetes.json +5582 -0
  19. package/examples/private/example-2.json +49796 -0
  20. package/examples/private/group-legend-test.json +328 -0
  21. package/examples/private/map.json +1211 -0
  22. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv +14041 -0
  23. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv +14041 -0
  24. package/examples/private/markup-footer/burden_toolkit_mortality_qaly_data.csv +18721 -0
  25. package/examples/private/markup-footer/burden_toolkit_mortality_yll_data.csv +18721 -0
  26. package/examples/private/markup-footer/mortality-deaths-footnotes-age.csv +3 -0
  27. package/examples/private/markup-variables.json +1451 -0
  28. package/examples/private/markup.json +5471 -0
  29. package/examples/private/mpox.json +38128 -0
  30. package/examples/private/north-dakota.json +1132 -0
  31. package/examples/private/ophdst.json +38754 -0
  32. package/examples/private/pedro.json +1 -0
  33. package/examples/private/pivot.json +683 -0
  34. package/examples/private/reset.json +32920 -0
  35. package/examples/private/sewershed.json +435 -0
  36. package/examples/private/tobacco.json +1938 -0
  37. package/examples/test-api-filter-reset.json +132 -0
  38. package/index.html +2 -2
  39. package/package.json +16 -10
  40. package/src/CdcDashboard.tsx +1 -3
  41. package/src/CdcDashboardComponent.tsx +34 -16
  42. package/src/DashboardContext.tsx +5 -1
  43. package/src/_stories/Dashboard.API.stories.tsx +62 -0
  44. package/src/_stories/Dashboard.stories.tsx +492 -472
  45. package/src/_stories/_mock/api/cessation.json +1 -0
  46. package/src/_stories/_mock/api/data-explorer.json +1 -0
  47. package/src/_stories/_mock/api/explore-by-location.json +1 -0
  48. package/src/_stories/_mock/api/explore-by-topic.json +1 -0
  49. package/src/_stories/_mock/api/legislation.json +1 -0
  50. package/src/_stories/_mock/api/oral-health-data.json +1 -0
  51. package/src/_stories/_mock/custom-order-new-values.json +116 -0
  52. package/src/components/CollapsibleVisualizationRow.tsx +1 -1
  53. package/src/components/DashboardFilters/DashboardFilters.tsx +34 -23
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +29 -12
  55. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +81 -112
  56. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +82 -52
  57. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +130 -31
  58. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +80 -21
  59. package/src/components/DataDesignerModal.tsx +227 -210
  60. package/src/components/Header/Header.tsx +13 -12
  61. package/src/components/Toggle/Toggle.tsx +48 -47
  62. package/src/components/VisualizationRow.tsx +13 -6
  63. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -0
  64. package/src/components/Widget/Widget.tsx +47 -18
  65. package/src/helpers/addValuesToDashboardFilters.ts +111 -60
  66. package/src/helpers/apiFilterHelpers.ts +190 -166
  67. package/src/helpers/filterData.ts +52 -7
  68. package/src/helpers/filterResetHelpers.ts +102 -0
  69. package/src/helpers/formatConfigBeforeSave.ts +137 -0
  70. package/src/helpers/getVizConfig.ts +36 -18
  71. package/src/helpers/loadAPIFilters.ts +109 -99
  72. package/src/helpers/reloadURLHelpers.ts +1 -1
  73. package/src/helpers/tests/filterResetHelpers.test.ts +532 -0
  74. package/src/helpers/tests/formatConfigBeforeSave.test.ts +69 -0
  75. package/src/index.tsx +1 -1
  76. package/src/scss/editor-panel.scss +3 -431
  77. package/src/scss/grid.scss +7 -5
  78. package/src/scss/main.scss +1 -24
  79. package/src/store/errorMessage/errorMessage.reducer.ts +1 -1
  80. package/src/types/DashboardFilters.ts +9 -8
  81. package/src/types/InitialState.ts +12 -12
  82. package/vite.config.js +1 -1
  83. package/vitest.config.ts +16 -0
  84. package/src/coreStyles_dashboard.scss +0 -3
  85. package/src/helpers/getAutoLoadVisualization.ts +0 -11
  86. package/src/scss/mixins.scss +0 -47
  87. package/src/scss/variables.scss +0 -5
  88. /package/dist/{cdcdashboard-548642e6.es.js → cdcdashboard-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,1938 @@
1
+ {
2
+ "table": {
3
+ "label": "Data Table",
4
+ "show": false,
5
+ "showDownloadUrl": false,
6
+ "showVertical": true
7
+ },
8
+ "datasets": {
9
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000": {
10
+ "dataFileSize": 760936,
11
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000",
12
+ "dataFileSourceType": "url",
13
+ "dataFileFormat": "JSON",
14
+ "preview": false,
15
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000"
16
+ },
17
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000": {
18
+ "dataFileSize": 718272,
19
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000",
20
+ "dataFileSourceType": "url",
21
+ "dataFileFormat": "JSON",
22
+ "preview": false,
23
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000"
24
+ },
25
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2000": {
26
+ "dataFileSize": 739648,
27
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2000",
28
+ "dataFileSourceType": "url",
29
+ "dataFileFormat": "JSON",
30
+ "preview": false,
31
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2000"
32
+ },
33
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000": {
34
+ "dataFileSize": 964676,
35
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000",
36
+ "dataFileSourceType": "url",
37
+ "dataFileFormat": "JSON",
38
+ "preview": false,
39
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000"
40
+ },
41
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001": {
42
+ "dataFileSize": 739994,
43
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001",
44
+ "dataFileSourceType": "url",
45
+ "dataFileFormat": "JSON",
46
+ "preview": false,
47
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001"
48
+ },
49
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002": {
50
+ "dataFileSize": 740386,
51
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002",
52
+ "dataFileSourceType": "url",
53
+ "dataFileFormat": "JSON",
54
+ "preview": false,
55
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002"
56
+ },
57
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003": {
58
+ "dataFileSize": 740786,
59
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003",
60
+ "dataFileSourceType": "url",
61
+ "dataFileFormat": "JSON",
62
+ "preview": false,
63
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003"
64
+ },
65
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&Location=%22National%20(States%20and%20DC)%20Summary%22&$limit=2000": {
66
+ "dataFileSize": 639246,
67
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&Location=%22National%20(States%20and%20DC)%20Summary%22&$limit=2000",
68
+ "dataFileSourceType": "url",
69
+ "dataFileFormat": "JSON",
70
+ "preview": false,
71
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&Location=%22National%20(States%20and%20DC)%20Summary%22&$limit=2000"
72
+ },
73
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000": {
74
+ "dataFileSize": 985166,
75
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000",
76
+ "dataFileSourceType": "url",
77
+ "dataFileFormat": "JSON",
78
+ "preview": false,
79
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Medicaid%20Coverage%20of%20Cessation%20Treatments%22%20&$limit=2000"
80
+ },
81
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000": {
82
+ "dataFileSize": 941808,
83
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000",
84
+ "dataFileSourceType": "url",
85
+ "dataFileFormat": "JSON",
86
+ "preview": false,
87
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Measure=%22Barriers%20to%20Treatments%22%20&$limit=2000"
88
+ },
89
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Location=%22National%20(States%20and%20DC)%20Summary%22%20&$limit=2000": {
90
+ "dataFileSize": 979437,
91
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Location=%22National%20(States%20and%20DC)%20Summary%22%20&$limit=2000",
92
+ "dataFileSourceType": "url",
93
+ "dataFileFormat": "JSON",
94
+ "preview": false,
95
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$where=Location=%22National%20(States%20and%20DC)%20Summary%22%20&$limit=2000"
96
+ },
97
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes": {
98
+ "dataFileSize": 9940,
99
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes",
100
+ "dataFileSourceType": "url",
101
+ "dataFileFormat": "JSON",
102
+ "preview": false,
103
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes"
104
+ },
105
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=20&TopicId=%22910MED%22": {
106
+ "dataFileSize": 823,
107
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=20&TopicId=%22910MED%22",
108
+ "dataFileSourceType": "url",
109
+ "dataFileFormat": "JSON",
110
+ "preview": false,
111
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=20&TopicId=%22910MED%22"
112
+ },
113
+ "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=21&TopicId=%22910MED%22": {
114
+ "dataFileSize": 823,
115
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=21&TopicId=%22910MED%22",
116
+ "dataFileSourceType": "url",
117
+ "dataFileFormat": "JSON",
118
+ "preview": false,
119
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_footnotes&$limit=21&TopicId=%22910MED%22"
120
+ },
121
+ "Map - Barriers to Treatment": {
122
+ "dataFileSize": 23980,
123
+ "dataFileName": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000&LocationAbbr!=%22US%22&YearQuarter=%222024-Q2%22&SubMeasure=%22Barriers%20to%20Treatments%22",
124
+ "dataFileSourceType": "url",
125
+ "dataFileFormat": "JSON",
126
+ "preview": true,
127
+ "dataUrl": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000&LocationAbbr!=%22US%22&YearQuarter=%222024-Q2%22&SubMeasure=%22Barriers%20to%20Treatments%22"
128
+ }
129
+ },
130
+ "type": "dashboard",
131
+ "version": "4.25.1",
132
+ "uuid": 1740603969428,
133
+ "multiDashboards": [
134
+ {
135
+ "dashboard": {
136
+ "theme": "theme-blue",
137
+ "sharedFilters": [
138
+ {
139
+ "key": "Time Period",
140
+ "showDropdown": true,
141
+ "type": "urlfilter",
142
+ "apiFilter": {
143
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2000&$select=DISTINCT YearQuarter&$order=YearQuarter DESC",
144
+ "valueSelector": "YearQuarter",
145
+ "textSelector": ""
146
+ },
147
+ "setByQueryParameter": "YearQuarter",
148
+ "usedBy": [
149
+ "map1728427926518",
150
+ "map1728934471038",
151
+ "markup-include1730225845258",
152
+ "markup-include1732559574474",
153
+ "markup-include1733774990207"
154
+ ],
155
+ "tier": 1,
156
+ "orderedValues": []
157
+ },
158
+ {
159
+ "key": "Sub-measure",
160
+ "showDropdown": true,
161
+ "type": "urlfilter",
162
+ "apiFilter": {
163
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_cessation_dashboard&%24limit=20&%24select=distinct%20Measure%2c%20measureDisplayOrder%2c%20SubMeasure%2c%20submeasureDisplayOrder&%24where=Measure=%27Medicaid%20Coverage%20of%20Cessation%20Treatments%27&%24order=measureDisplayOrder%2csubmeasureDisplayOrder",
164
+ "valueSelector": "SubMeasure",
165
+ "textSelector": ""
166
+ },
167
+ "parents": [
168
+ "Time Period"
169
+ ],
170
+ "usedBy": [
171
+ "map1728427926518"
172
+ ],
173
+ "tier": 2,
174
+ "orderedValues": []
175
+ },
176
+ {
177
+ "key": "Sub-Measure",
178
+ "showDropdown": true,
179
+ "type": "urlfilter",
180
+ "apiFilter": {
181
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_cessation_dashboard&%24limit=20&%24select=distinct%20Measure%2c%20measureDisplayOrder%2c%20SubMeasure%2c%20submeasureDisplayOrder&%24where=Measure=%27Barriers%20to%20Treatments%27&%24order=measureDisplayOrder%2csubmeasureDisplayOrder",
182
+ "valueSelector": "SubMeasure",
183
+ "textSelector": ""
184
+ },
185
+ "parents": [
186
+ "Time Period"
187
+ ],
188
+ "usedBy": [
189
+ "map1728934471038",
190
+ "table1736982246454"
191
+ ],
192
+ "tier": 1,
193
+ "orderedValues": []
194
+ }
195
+ ],
196
+ "title": "",
197
+ "description": ""
198
+ },
199
+ "visualizations": {
200
+ "map1728427926518": {
201
+ "annotations": [],
202
+ "general": {
203
+ "geoType": "us",
204
+ "noStateFoundMessage": "Map Unavailable",
205
+ "annotationDropdownText": "Annotations",
206
+ "geoBorderColor": "darkGray",
207
+ "headerColor": "theme-blue",
208
+ "title": "",
209
+ "showTitle": false,
210
+ "showSidebar": true,
211
+ "showDownloadButton": true,
212
+ "showDownloadMediaButton": false,
213
+ "displayAsHex": false,
214
+ "displayStateLabels": true,
215
+ "territoriesAlwaysShow": false,
216
+ "language": "en",
217
+ "geoLabelOverride": "",
218
+ "hasRegions": false,
219
+ "fullBorder": false,
220
+ "type": "data",
221
+ "convertFipsCodes": true,
222
+ "palette": {
223
+ "isReversed": true
224
+ },
225
+ "allowMapZoom": true,
226
+ "hideGeoColumnInTooltip": true,
227
+ "hidePrimaryColumnInTooltip": false,
228
+ "statePicked": {
229
+ "fipsCode": "01",
230
+ "stateName": "Alabama"
231
+ },
232
+ "expandDataTable": false,
233
+ "introText": "",
234
+ "showDownloadImgButton": true,
235
+ "navigationTarget": "_self"
236
+ },
237
+ "type": "map",
238
+ "color": "sequential-blue-2(MPX)reverse",
239
+ "columns": {
240
+ "geo": {
241
+ "name": "LocationAbbr",
242
+ "label": "Location",
243
+ "tooltip": false,
244
+ "dataTable": true
245
+ },
246
+ "primary": {
247
+ "dataTable": true,
248
+ "tooltip": true,
249
+ "prefix": "",
250
+ "suffix": "",
251
+ "name": "Summary",
252
+ "label": "Summary",
253
+ "roundToPlace": 0
254
+ },
255
+ "navigate": {
256
+ "name": ""
257
+ },
258
+ "latitude": {
259
+ "name": ""
260
+ },
261
+ "longitude": {
262
+ "name": ""
263
+ },
264
+ "additionalColumn1": {
265
+ "label": "Fee-For-Service Plans",
266
+ "dataTable": true,
267
+ "tooltips": false,
268
+ "prefix": "",
269
+ "suffix": "",
270
+ "name": "Fee-For-Service Plans",
271
+ "tooltip": true
272
+ },
273
+ "additionalColumn2": {
274
+ "label": "Managed Care Plans",
275
+ "dataTable": true,
276
+ "tooltips": false,
277
+ "prefix": "",
278
+ "suffix": "",
279
+ "name": "Managed Care Plans",
280
+ "tooltip": true
281
+ }
282
+ },
283
+ "legend": {
284
+ "descriptions": {},
285
+ "specialClasses": [],
286
+ "unified": false,
287
+ "singleColumn": false,
288
+ "singleRow": true,
289
+ "verticalSorted": false,
290
+ "showSpecialClassesLast": false,
291
+ "dynamicDescription": false,
292
+ "type": "category",
293
+ "numberOfItems": 3,
294
+ "position": "bottom",
295
+ "title": "Legend - Summary",
296
+ "style": "circles",
297
+ "subStyle": "linear blocks",
298
+ "tickRotation": "",
299
+ "singleColumnLegend": false,
300
+ "hideBorder": false,
301
+ "categoryValuesOrder": [
302
+ "Yes",
303
+ "No"
304
+ ]
305
+ },
306
+ "filters": [],
307
+ "table": {
308
+ "wrapColumns": false,
309
+ "label": "Data Table",
310
+ "expanded": false,
311
+ "limitHeight": false,
312
+ "height": "",
313
+ "caption": "",
314
+ "showDownloadUrl": false,
315
+ "showDataTableLink": false,
316
+ "showDownloadLinkBelow": true,
317
+ "showFullGeoNameInCSV": false,
318
+ "forceDisplay": true,
319
+ "download": true,
320
+ "indexLabel": "State"
321
+ },
322
+ "tooltips": {
323
+ "appearanceType": "hover",
324
+ "linkLabel": "Learn More",
325
+ "capitalizeLabels": true,
326
+ "opacity": 90
327
+ },
328
+ "visual": {
329
+ "minBubbleSize": 1,
330
+ "maxBubbleSize": 20,
331
+ "extraBubbleBorder": false,
332
+ "cityStyle": "circle",
333
+ "cityStyleLabel": "",
334
+ "showBubbleZeros": false,
335
+ "additionalCityStyles": [],
336
+ "geoCodeCircleSize": 8
337
+ },
338
+ "mapPosition": {
339
+ "coordinates": [
340
+ 0,
341
+ 30
342
+ ],
343
+ "zoom": 1
344
+ },
345
+ "map": {
346
+ "layers": [],
347
+ "patterns": []
348
+ },
349
+ "hexMap": {
350
+ "type": "",
351
+ "shapeGroups": [
352
+ {
353
+ "legendTitle": "",
354
+ "legendDescription": "",
355
+ "items": [
356
+ {
357
+ "key": "",
358
+ "shape": "Arrow Up",
359
+ "column": "",
360
+ "operator": "=",
361
+ "value": ""
362
+ }
363
+ ]
364
+ }
365
+ ]
366
+ },
367
+ "filterBehavior": "Filter Change",
368
+ "filterIntro": "",
369
+ "openModal": true,
370
+ "uid": "map1728427926518",
371
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000",
372
+ "dataDescription": {
373
+ "horizontal": false,
374
+ "series": false
375
+ },
376
+ "version": "4.25.1",
377
+ "editor": {
378
+ "activeFilterValueForDescription": [
379
+ 0,
380
+ 0
381
+ ]
382
+ },
383
+ "migrations": {
384
+ "addColorMigration": true
385
+ }
386
+ },
387
+ "map1728934471038": {
388
+ "annotations": [],
389
+ "general": {
390
+ "geoType": "us",
391
+ "noStateFoundMessage": "Map Unavailable",
392
+ "annotationDropdownText": "Annotations",
393
+ "geoBorderColor": "darkGray",
394
+ "headerColor": "theme-blue",
395
+ "title": "Medicaid Barriers to Treatments,",
396
+ "showTitle": false,
397
+ "showSidebar": true,
398
+ "showDownloadButton": true,
399
+ "showDownloadMediaButton": false,
400
+ "displayAsHex": false,
401
+ "displayStateLabels": true,
402
+ "territoriesAlwaysShow": false,
403
+ "language": "en",
404
+ "geoLabelOverride": "",
405
+ "hasRegions": false,
406
+ "fullBorder": false,
407
+ "type": "data",
408
+ "convertFipsCodes": true,
409
+ "palette": {
410
+ "isReversed": true
411
+ },
412
+ "allowMapZoom": true,
413
+ "hideGeoColumnInTooltip": false,
414
+ "hidePrimaryColumnInTooltip": false,
415
+ "statePicked": {
416
+ "fipsCode": "01",
417
+ "stateName": "Alabama"
418
+ },
419
+ "expandDataTable": false,
420
+ "introText": "Make a selection from the filters to change the visualization information.",
421
+ "showDownloadImgButton": true,
422
+ "navigationTarget": "_self"
423
+ },
424
+ "type": "map",
425
+ "color": "sequential-blue-2(MPX)reverse",
426
+ "columns": {
427
+ "geo": {
428
+ "name": "LocationAbbr",
429
+ "label": "Location",
430
+ "tooltip": false,
431
+ "dataTable": true
432
+ },
433
+ "primary": {
434
+ "dataTable": true,
435
+ "tooltip": true,
436
+ "prefix": "",
437
+ "suffix": "",
438
+ "name": "Summary",
439
+ "label": "Summary",
440
+ "roundToPlace": 0
441
+ },
442
+ "navigate": {
443
+ "name": ""
444
+ },
445
+ "latitude": {
446
+ "name": ""
447
+ },
448
+ "longitude": {
449
+ "name": ""
450
+ },
451
+ "additionalColumn1": {
452
+ "label": "Fee-For-Service Plans",
453
+ "dataTable": true,
454
+ "tooltips": false,
455
+ "prefix": "",
456
+ "suffix": "",
457
+ "name": "Fee-For-Service Plans",
458
+ "tooltip": true
459
+ },
460
+ "additionalColumn2": {
461
+ "label": "Managed Care Plans",
462
+ "dataTable": true,
463
+ "tooltips": false,
464
+ "prefix": "",
465
+ "suffix": "",
466
+ "name": "Managed Care Plans",
467
+ "useCommas": false,
468
+ "tooltip": true
469
+ }
470
+ },
471
+ "legend": {
472
+ "descriptions": {},
473
+ "specialClasses": [],
474
+ "unified": false,
475
+ "singleColumn": false,
476
+ "singleRow": true,
477
+ "verticalSorted": false,
478
+ "showSpecialClassesLast": false,
479
+ "dynamicDescription": false,
480
+ "type": "category",
481
+ "numberOfItems": 3,
482
+ "position": "bottom",
483
+ "title": "Legend - Summary",
484
+ "style": "circles",
485
+ "subStyle": "linear blocks",
486
+ "tickRotation": "",
487
+ "singleColumnLegend": false,
488
+ "hideBorder": false,
489
+ "categoryValuesOrder": [
490
+ "Yes",
491
+ "No",
492
+ "Varies",
493
+ "Not Available",
494
+ "Not Applicable"
495
+ ]
496
+ },
497
+ "filters": [],
498
+ "table": {
499
+ "wrapColumns": false,
500
+ "label": "Data Table",
501
+ "expanded": false,
502
+ "limitHeight": false,
503
+ "height": "",
504
+ "caption": "",
505
+ "showDownloadUrl": false,
506
+ "showDataTableLink": false,
507
+ "showDownloadLinkBelow": true,
508
+ "showFullGeoNameInCSV": false,
509
+ "forceDisplay": false,
510
+ "download": true,
511
+ "indexLabel": "State"
512
+ },
513
+ "tooltips": {
514
+ "appearanceType": "hover",
515
+ "linkLabel": "Learn More",
516
+ "capitalizeLabels": true,
517
+ "opacity": 90
518
+ },
519
+ "visual": {
520
+ "minBubbleSize": 1,
521
+ "maxBubbleSize": 20,
522
+ "extraBubbleBorder": false,
523
+ "cityStyle": "circle",
524
+ "cityStyleLabel": "",
525
+ "showBubbleZeros": false,
526
+ "additionalCityStyles": [],
527
+ "geoCodeCircleSize": 8
528
+ },
529
+ "mapPosition": {
530
+ "coordinates": [
531
+ 0,
532
+ 30
533
+ ],
534
+ "zoom": 1
535
+ },
536
+ "map": {
537
+ "layers": [],
538
+ "patterns": []
539
+ },
540
+ "hexMap": {
541
+ "type": "",
542
+ "shapeGroups": [
543
+ {
544
+ "legendTitle": "",
545
+ "legendDescription": "",
546
+ "items": [
547
+ {
548
+ "key": "",
549
+ "shape": "Arrow Up",
550
+ "column": "",
551
+ "operator": "=",
552
+ "value": ""
553
+ }
554
+ ]
555
+ }
556
+ ]
557
+ },
558
+ "filterBehavior": "Filter Change",
559
+ "filterIntro": "",
560
+ "openModal": true,
561
+ "uid": "map1728934471038",
562
+ "dataKey": "Map - Barriers to Treatment",
563
+ "dataDescription": {
564
+ "horizontal": false,
565
+ "series": false
566
+ },
567
+ "version": "4.25.1",
568
+ "migrations": {
569
+ "addColorMigration": true
570
+ }
571
+ },
572
+ "markup-include1730225845258": {
573
+ "filters": [],
574
+ "filterBehavior": "Filter Change",
575
+ "openModal": false,
576
+ "uid": "markup-include1730225845258",
577
+ "type": "markup-include",
578
+ "contentEditor": {
579
+ "inlineHTML": "<header class=\"cove-component__header component__header theme-blue mb-0\"><h2>Medicaid Coverage of Cessation Treatments, {{YearQuarter2}}</h2></header>",
580
+ "markupVariables": [
581
+ {
582
+ "columnName": "YearQuarter",
583
+ "conditions": [],
584
+ "name": "YearQuarter2",
585
+ "tag": "{{YearQuarter2}}"
586
+ }
587
+ ],
588
+ "showHeader": true,
589
+ "srcUrl": "#example",
590
+ "title": "",
591
+ "useInlineHTML": true
592
+ },
593
+ "theme": "theme-blue",
594
+ "visual": {
595
+ "border": false,
596
+ "accent": false,
597
+ "background": false,
598
+ "hideBackgroundColor": false,
599
+ "borderColorTheme": false
600
+ },
601
+ "showEditorPanel": true,
602
+ "visualizationType": "markup-include",
603
+ "version": "4.24.10",
604
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000",
605
+ "dataDescription": {
606
+ "horizontal": false,
607
+ "series": false
608
+ }
609
+ },
610
+ "dashboardFilters1730323544384": {
611
+ "filters": [],
612
+ "filterBehavior": "Filter Change",
613
+ "newViz": true,
614
+ "openModal": true,
615
+ "uid": "dashboardFilters1730323544384",
616
+ "type": "dashboardFilters",
617
+ "sharedFilterIndexes": [
618
+ 0
619
+ ],
620
+ "visualizationType": "dashboardFilters",
621
+ "dataDescription": {
622
+ "horizontal": false,
623
+ "series": false
624
+ },
625
+ "applyFiltersButtonText": "View Results",
626
+ "autoLoad": true
627
+ },
628
+ "markup-include1732559574474": {
629
+ "filters": [],
630
+ "filterBehavior": "Filter Change",
631
+ "openModal": false,
632
+ "uid": "markup-include1732559574474",
633
+ "type": "markup-include",
634
+ "contentEditor": {
635
+ "inlineHTML": "<header class=\"cove-component__header component__header theme-blue mb-0\"><h2>Medicaid Barriers to Treatments, {{YearQuarter3}}</h2></header>",
636
+ "markupVariables": [
637
+ {
638
+ "columnName": "YearQuarter",
639
+ "conditions": [],
640
+ "name": "YearQuarter3",
641
+ "tag": "{{YearQuarter3}}"
642
+ }
643
+ ],
644
+ "showHeader": true,
645
+ "srcUrl": "#example",
646
+ "title": "",
647
+ "useInlineHTML": true
648
+ },
649
+ "theme": "theme-blue",
650
+ "visual": {
651
+ "border": false,
652
+ "accent": false,
653
+ "background": false,
654
+ "hideBackgroundColor": false,
655
+ "borderColorTheme": false
656
+ },
657
+ "showEditorPanel": true,
658
+ "visualizationType": "markup-include",
659
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation_dashboard&$limit=2000",
660
+ "dataDescription": {
661
+ "horizontal": false,
662
+ "series": false
663
+ },
664
+ "version": "4.25.1",
665
+ "migrations": {
666
+ "addColorMigration": true
667
+ }
668
+ },
669
+ "markup-include1733774990207": {
670
+ "filters": [],
671
+ "filterBehavior": "Filter Change",
672
+ "openModal": false,
673
+ "uid": "markup-include1733774990207",
674
+ "type": "markup-include",
675
+ "contentEditor": {
676
+ "inlineHTML": "<strong>Source:</strong> <a href = \"https://www.cdc.gov/statesystem/glossaryandmethodology.html\">American Lung Association State Tobacco Cessation Coverage Database (Lung Association)</a><br/><br/>\n\nSection 2502 of the Patient Protection and Affordable Care Act requires all state Medicaid programs to cover all FDA-approved tobacco cessation medications as of January 1, 2014. However, states are currently in the process of modifying their coverage to come into compliance with this requirement. Data in the STATE System on Medicaid coverage of tobacco cessation medications reflect evidence of coverage that is found in documentable sources, and may not yet reflect medications covered under this requirement.",
677
+ "markupVariables": [],
678
+ "showHeader": true,
679
+ "srcUrl": "#example",
680
+ "title": "",
681
+ "useInlineHTML": true
682
+ },
683
+ "theme": "theme-blue",
684
+ "visual": {
685
+ "border": false,
686
+ "accent": false,
687
+ "background": false,
688
+ "hideBackgroundColor": false,
689
+ "borderColorTheme": false
690
+ },
691
+ "showEditorPanel": true,
692
+ "visualizationType": "markup-include",
693
+ "version": "4.25.1",
694
+ "migrations": {
695
+ "addColorMigration": true
696
+ }
697
+ },
698
+ "footnotes1733846845601": {
699
+ "uid": "footnotes1733846845601",
700
+ "type": "footnotes",
701
+ "visualizationType": "footnotes",
702
+ "dataKey": "",
703
+ "dynamicFootnotes": {
704
+ "symbolColumn": "footnoteSymbol",
705
+ "textColumn": "footnoteText",
706
+ "orderColumn": "SubMeasure"
707
+ },
708
+ "staticFootnotes": [
709
+ {
710
+ "text": "†Telephone counseling is available through the state quitline."
711
+ }
712
+ ]
713
+ },
714
+ "dashboardFilters1733947475347": {
715
+ "filters": [],
716
+ "filterBehavior": "Filter Change",
717
+ "newViz": true,
718
+ "openModal": true,
719
+ "uid": "dashboardFilters1733947475347",
720
+ "type": "dashboardFilters",
721
+ "sharedFilterIndexes": [
722
+ 1
723
+ ],
724
+ "visualizationType": "dashboardFilters",
725
+ "autoLoad": false
726
+ },
727
+ "dashboardFilters1736981886225": {
728
+ "filters": [],
729
+ "filterBehavior": "Filter Change",
730
+ "newViz": true,
731
+ "openModal": true,
732
+ "uid": "dashboardFilters1736981886225",
733
+ "type": "dashboardFilters",
734
+ "sharedFilterIndexes": [
735
+ 2
736
+ ],
737
+ "visualizationType": "dashboardFilters"
738
+ },
739
+ "table1736982246454": {
740
+ "filters": [],
741
+ "filterBehavior": "Filter Change",
742
+ "newViz": false,
743
+ "openModal": true,
744
+ "uid": "table1736982246454",
745
+ "type": "table",
746
+ "table": {
747
+ "label": "Data Table",
748
+ "show": true,
749
+ "showDownloadUrl": false,
750
+ "showVertical": true,
751
+ "expanded": false,
752
+ "collapsible": true
753
+ },
754
+ "columns": {
755
+ "Fee-For-Service Plans": {
756
+ "name": "Fee-For-Service Plans",
757
+ "dataTable": true,
758
+ "order": 4
759
+ },
760
+ "LocationAbbr": {
761
+ "name": "LocationAbbr",
762
+ "dataTable": false
763
+ },
764
+ "Managed Care Plans": {
765
+ "name": "Managed Care Plans",
766
+ "dataTable": true,
767
+ "order": 4
768
+ },
769
+ "Measure": {
770
+ "name": "Measure",
771
+ "dataTable": false
772
+ },
773
+ "No": {
774
+ "name": "No",
775
+ "dataTable": false
776
+ },
777
+ "Not Applicable": {
778
+ "name": "Not Applicable",
779
+ "dataTable": false
780
+ },
781
+ "Not Available": {
782
+ "name": "Not Available",
783
+ "dataTable": false
784
+ },
785
+ "Quarter": {
786
+ "name": "Quarter",
787
+ "dataTable": false
788
+ },
789
+ "SubMeasure": {
790
+ "name": "SubMeasure",
791
+ "dataTable": false
792
+ },
793
+ "SummaryCount": {
794
+ "name": "SummaryCount",
795
+ "dataTable": false
796
+ },
797
+ "Topic": {
798
+ "name": "Topic",
799
+ "dataTable": false
800
+ },
801
+ "Varies": {
802
+ "name": "Varies",
803
+ "dataTable": false
804
+ },
805
+ "Year": {
806
+ "name": "Year",
807
+ "dataTable": false
808
+ },
809
+ "YearQuarter": {
810
+ "name": "YearQuarter",
811
+ "dataTable": false
812
+ },
813
+ "Yes": {
814
+ "name": "Yes",
815
+ "dataTable": false
816
+ },
817
+ "measureDisplayOrder": {
818
+ "name": "measureDisplayOrder",
819
+ "dataTable": false
820
+ },
821
+ "submeasureDisplayOrder": {
822
+ "name": "submeasureDisplayOrder",
823
+ "dataTable": false
824
+ },
825
+ "Location": {
826
+ "label": "State",
827
+ "dataTable": true,
828
+ "tooltips": false,
829
+ "prefix": "",
830
+ "suffix": "",
831
+ "forestPlot": false,
832
+ "startingPoint": "0",
833
+ "forestPlotAlignRight": false,
834
+ "roundToPlace": 0,
835
+ "commas": false,
836
+ "showInViz": false,
837
+ "forestPlotStartingPoint": 0,
838
+ "name": "Location",
839
+ "order": 1
840
+ },
841
+ "Summary": {
842
+ "label": "Summary",
843
+ "dataTable": true,
844
+ "tooltips": false,
845
+ "prefix": "",
846
+ "suffix": "",
847
+ "forestPlot": false,
848
+ "startingPoint": "0",
849
+ "forestPlotAlignRight": false,
850
+ "roundToPlace": 0,
851
+ "commas": false,
852
+ "showInViz": false,
853
+ "forestPlotStartingPoint": 0,
854
+ "name": "Summary",
855
+ "order": 2
856
+ }
857
+ },
858
+ "dataFormat": {},
859
+ "visualizationType": "table",
860
+ "dataDescription": {
861
+ "horizontal": false,
862
+ "series": false
863
+ },
864
+ "dataKey": "Map - Barriers to Treatment"
865
+ }
866
+ },
867
+ "rows": [
868
+ {
869
+ "columns": [
870
+ {
871
+ "width": 12,
872
+ "widget": "dashboardFilters1730323544384"
873
+ }
874
+ ],
875
+ "uuid": 1730323568195,
876
+ "dataDescription": {
877
+ "horizontal": false,
878
+ "series": false
879
+ }
880
+ },
881
+ {
882
+ "columns": [
883
+ {
884
+ "width": 12,
885
+ "widget": "markup-include1730225845258"
886
+ }
887
+ ],
888
+ "dataDescription": {},
889
+ "dataKey": "",
890
+ "uuid": 1730323568195
891
+ },
892
+ {
893
+ "columns": [
894
+ {
895
+ "width": 12,
896
+ "widget": "dashboardFilters1733947475347"
897
+ }
898
+ ],
899
+ "uuid": 1733947467575
900
+ },
901
+ {
902
+ "columns": [
903
+ {
904
+ "width": 12,
905
+ "widget": "map1728427926518"
906
+ }
907
+ ],
908
+ "dataDescription": {},
909
+ "dataKey": "",
910
+ "uuid": 1733947467575,
911
+ "footnotesId": "footnotes1733846845601"
912
+ },
913
+ {
914
+ "columns": [
915
+ {
916
+ "width": 12,
917
+ "widget": "markup-include1732559574474"
918
+ }
919
+ ],
920
+ "uuid": 1733947465352,
921
+ "dataDescription": {},
922
+ "dataKey": ""
923
+ },
924
+ {
925
+ "columns": [
926
+ {
927
+ "width": 12,
928
+ "widget": "dashboardFilters1736981886225"
929
+ }
930
+ ],
931
+ "uuid": 1736981889679
932
+ },
933
+ {
934
+ "columns": [
935
+ {
936
+ "width": 12,
937
+ "widget": "map1728934471038"
938
+ }
939
+ ],
940
+ "dataDescription": {},
941
+ "dataKey": "",
942
+ "uuid": 1736982252771
943
+ },
944
+ {
945
+ "columns": [
946
+ {
947
+ "width": 12,
948
+ "widget": "table1736982246454"
949
+ }
950
+ ],
951
+ "uuid": 1736982252771
952
+ },
953
+ {
954
+ "columns": [
955
+ {
956
+ "width": 12,
957
+ "widget": "markup-include1733774990207"
958
+ }
959
+ ],
960
+ "uuid": 1736982247756
961
+ }
962
+ ],
963
+ "label": "Dashboard"
964
+ },
965
+ {
966
+ "dashboard": {
967
+ "sharedFilters": [
968
+ {
969
+ "key": "Topic",
970
+ "showDropdown": true,
971
+ "type": "urlfilter",
972
+ "apiFilter": {
973
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001&$select=DISTINCT%20Topic&$order=Topic",
974
+ "valueSelector": "Topic",
975
+ "textSelector": ""
976
+ },
977
+ "setByQueryParameter": "",
978
+ "usedBy": [
979
+ 1,
980
+ 2
981
+ ],
982
+ "tier": 1
983
+ },
984
+ {
985
+ "key": "Location",
986
+ "showDropdown": true,
987
+ "type": "urlfilter",
988
+ "apiFilter": {
989
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001&$select=DISTINCT%20Location&$order=Location",
990
+ "valueSelector": "Location",
991
+ "textSelector": ""
992
+ },
993
+ "tier": 1
994
+ },
995
+ {
996
+ "key": "Time Period (Select up to 4)",
997
+ "showDropdown": true,
998
+ "type": "urlfilter",
999
+ "filterStyle": "multi-select",
1000
+ "apiFilter": {
1001
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001&$select=DISTINCT YearQuarter&$order=YearQuarter DESC",
1002
+ "subgroupValueSelector": "",
1003
+ "textSelector": "",
1004
+ "valueSelector": "YearQuarter"
1005
+ },
1006
+ "selectLimit": "4",
1007
+ "parents": [
1008
+ "Topic",
1009
+ "Location"
1010
+ ],
1011
+ "tier": 2
1012
+ }
1013
+ ]
1014
+ },
1015
+ "visualizations": {
1016
+ "dashboardFilters1727792242409": {
1017
+ "filters": [],
1018
+ "filterBehavior": "Apply Button",
1019
+ "newViz": true,
1020
+ "openModal": true,
1021
+ "uid": "dashboardFilters1727792242409",
1022
+ "type": "dashboardFilters",
1023
+ "sharedFilterIndexes": [
1024
+ 0,
1025
+ 1
1026
+ ],
1027
+ "visualizationType": "dashboardFilters",
1028
+ "dataDescription": {
1029
+ "horizontal": false,
1030
+ "series": false
1031
+ },
1032
+ "showEditorPanel": false,
1033
+ "applyFiltersButtonText": "View Results"
1034
+ },
1035
+ "table1727792536096": {
1036
+ "filters": [],
1037
+ "filterBehavior": "Filter Change",
1038
+ "newViz": false,
1039
+ "openModal": true,
1040
+ "uid": "table1727792536096",
1041
+ "type": "table",
1042
+ "table": {
1043
+ "label": "Data Table",
1044
+ "show": true,
1045
+ "showDownloadUrl": false,
1046
+ "showVertical": true,
1047
+ "expanded": true,
1048
+ "collapsible": true
1049
+ },
1050
+ "columns": {},
1051
+ "dataFormat": {},
1052
+ "visualizationType": "table"
1053
+ },
1054
+ "dashboardFilters1730227679128": {
1055
+ "filters": [],
1056
+ "filterBehavior": "Filter Change",
1057
+ "newViz": true,
1058
+ "openModal": true,
1059
+ "uid": "dashboardFilters1730227679128",
1060
+ "type": "dashboardFilters",
1061
+ "sharedFilterIndexes": [
1062
+ 2
1063
+ ],
1064
+ "visualizationType": "dashboardFilters",
1065
+ "dataDescription": {
1066
+ "horizontal": false,
1067
+ "series": false
1068
+ },
1069
+ "autoLoad": true
1070
+ },
1071
+ "table1730238134196": {
1072
+ "filters": [],
1073
+ "filterBehavior": "Filter Change",
1074
+ "newViz": false,
1075
+ "openModal": true,
1076
+ "uid": "table1730238134196",
1077
+ "type": "table",
1078
+ "table": {
1079
+ "label": "Data Table",
1080
+ "show": true,
1081
+ "showDownloadUrl": false,
1082
+ "showVertical": true,
1083
+ "expanded": true,
1084
+ "collapsible": true,
1085
+ "groupBy": "SubMeasure",
1086
+ "pivot": {
1087
+ "columnName": "YearQuarter",
1088
+ "valueColumns": [
1089
+ "Value"
1090
+ ]
1091
+ }
1092
+ },
1093
+ "columns": {
1094
+ "GeoLocation": {
1095
+ "name": "GeoLocation",
1096
+ "dataTable": false
1097
+ },
1098
+ "Location": {
1099
+ "name": "Location",
1100
+ "dataTable": false
1101
+ },
1102
+ "LocationAbbr": {
1103
+ "name": "LocationAbbr",
1104
+ "dataTable": false
1105
+ },
1106
+ "Quarter": {
1107
+ "name": "Quarter",
1108
+ "dataTable": false
1109
+ },
1110
+ "Measure": {
1111
+ "name": "Measure",
1112
+ "dataTable": false
1113
+ },
1114
+ "RowDisplayOrder": {
1115
+ "name": "RowDisplayOrder",
1116
+ "dataTable": false
1117
+ },
1118
+ "RowNum": {
1119
+ "name": "RowNum",
1120
+ "dataTable": false
1121
+ },
1122
+ "Year": {
1123
+ "name": "Year",
1124
+ "dataTable": false
1125
+ },
1126
+ "SubMeasure": {
1127
+ "name": "SubMeasure",
1128
+ "dataTable": true,
1129
+ "order": null
1130
+ },
1131
+ "Category": {
1132
+ "name": "Category",
1133
+ "dataTable": true,
1134
+ "order": 1,
1135
+ "label": ""
1136
+ },
1137
+ "Topic": {
1138
+ "name": "Topic",
1139
+ "dataTable": false
1140
+ }
1141
+ },
1142
+ "dataFormat": {},
1143
+ "visualizationType": "table",
1144
+ "dataDescription": {
1145
+ "horizontal": false,
1146
+ "series": false
1147
+ }
1148
+ },
1149
+ "markup-include1732295231213": {
1150
+ "filters": [],
1151
+ "filterBehavior": "Filter Change",
1152
+ "openModal": false,
1153
+ "uid": "markup-include1732295231213",
1154
+ "type": "markup-include",
1155
+ "contentEditor": {
1156
+ "inlineHTML": "<h2>Cessation - Medicaid Coverage of Cessation Treatments and Barriers to Treatments</h2><h3><em>{{state-name}}</em></h3>",
1157
+ "markupVariables": [
1158
+ {
1159
+ "columnName": "Location",
1160
+ "conditions": [],
1161
+ "name": "state-name",
1162
+ "tag": "{{state-name}}"
1163
+ }
1164
+ ],
1165
+ "showHeader": true,
1166
+ "srcUrl": "#example",
1167
+ "title": "",
1168
+ "useInlineHTML": true
1169
+ },
1170
+ "theme": "theme-blue",
1171
+ "visual": {
1172
+ "border": false,
1173
+ "accent": false,
1174
+ "background": false,
1175
+ "hideBackgroundColor": false,
1176
+ "borderColorTheme": false
1177
+ },
1178
+ "showEditorPanel": true,
1179
+ "visualizationType": "markup-include",
1180
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001",
1181
+ "dataDescription": {
1182
+ "horizontal": false,
1183
+ "series": false
1184
+ },
1185
+ "version": "4.24.10"
1186
+ },
1187
+ "markup-include1733775500530": {
1188
+ "filters": [],
1189
+ "filterBehavior": "Filter Change",
1190
+ "openModal": false,
1191
+ "uid": "markup-include1733775500530",
1192
+ "type": "markup-include",
1193
+ "contentEditor": {
1194
+ "inlineHTML": "† Telephone counseling is available through the state quitline.<br/><br/>\n\n<strong>Source:</strong> <a href = \"https://www.cdc.gov/statesystem/glossaryandmethodology.html\">American Lung Association State Tobacco Cessation Coverage Database (Lung Association)</a><br/><br/>\n\nSection 2502 of the Patient Protection and Affordable Care Act requires all state Medicaid programs to cover all FDA-approved tobacco cessation medications as of January 1, 2014. However, states are currently in the process of modifying their coverage to come into compliance with this requirement. Data in the STATE System on Medicaid coverage of tobacco cessation medications reflect evidence of coverage that is found in documentable sources, and may not yet reflect medications covered under this requirement.\n\n",
1195
+ "markupVariables": [],
1196
+ "showHeader": true,
1197
+ "srcUrl": "#example",
1198
+ "title": "",
1199
+ "useInlineHTML": true
1200
+ },
1201
+ "theme": "theme-blue",
1202
+ "visual": {
1203
+ "border": false,
1204
+ "accent": false,
1205
+ "background": false,
1206
+ "hideBackgroundColor": false,
1207
+ "borderColorTheme": false
1208
+ },
1209
+ "showEditorPanel": true,
1210
+ "visualizationType": "markup-include",
1211
+ "version": "4.25.1",
1212
+ "migrations": {
1213
+ "addColorMigration": true
1214
+ }
1215
+ }
1216
+ },
1217
+ "rows": [
1218
+ {
1219
+ "columns": [
1220
+ {
1221
+ "width": 12,
1222
+ "widget": "dashboardFilters1727792242409"
1223
+ }
1224
+ ],
1225
+ "dataDescription": {},
1226
+ "dataKey": ""
1227
+ },
1228
+ {
1229
+ "columns": [
1230
+ {
1231
+ "width": 12,
1232
+ "widget": "markup-include1732295231213"
1233
+ }
1234
+ ],
1235
+ "uuid": 1732295235592,
1236
+ "dataDescription": {},
1237
+ "dataKey": ""
1238
+ },
1239
+ {
1240
+ "columns": [
1241
+ {
1242
+ "width": 12,
1243
+ "widget": "dashboardFilters1730227679128"
1244
+ }
1245
+ ],
1246
+ "uuid": 1732295235592,
1247
+ "dataDescription": {},
1248
+ "dataKey": ""
1249
+ },
1250
+ {
1251
+ "columns": [
1252
+ {
1253
+ "width": 12,
1254
+ "widget": "table1730238134196"
1255
+ }
1256
+ ],
1257
+ "dataDescription": {
1258
+ "horizontal": false,
1259
+ "series": false
1260
+ },
1261
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2001",
1262
+ "multiVizColumn": "Measure",
1263
+ "expandCollapseAllButtons": true,
1264
+ "uuid": 1732295233081
1265
+ },
1266
+ {
1267
+ "columns": [
1268
+ {
1269
+ "width": 12,
1270
+ "widget": "markup-include1733775500530"
1271
+ }
1272
+ ]
1273
+ }
1274
+ ],
1275
+ "label": "Search by Location",
1276
+ "type": "dashboard",
1277
+ "version": "4.25.1",
1278
+ "migrations": {
1279
+ "addColorMigration": true
1280
+ }
1281
+ },
1282
+ {
1283
+ "dashboard": {
1284
+ "theme": "theme-blue",
1285
+ "sharedFilters": [
1286
+ {
1287
+ "key": "Topic",
1288
+ "showDropdown": true,
1289
+ "type": "urlfilter",
1290
+ "apiFilter": {
1291
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002&$select=DISTINCT%20Topic&$order=Topic",
1292
+ "valueSelector": "Topic",
1293
+ "textSelector": ""
1294
+ },
1295
+ "tier": 1
1296
+ },
1297
+ {
1298
+ "key": "Time Period",
1299
+ "showDropdown": true,
1300
+ "type": "urlfilter",
1301
+ "apiFilter": {
1302
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002&$select=DISTINCT YearQuarter&$order=YearQuarter DESC",
1303
+ "valueSelector": "YearQuarter",
1304
+ "textSelector": ""
1305
+ },
1306
+ "tier": 1
1307
+ },
1308
+ {
1309
+ "key": "Location (Select up to 4)",
1310
+ "showDropdown": true,
1311
+ "type": "urlfilter",
1312
+ "apiFilter": {
1313
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002&$select=DISTINCT%20Location&$order=Location",
1314
+ "subgroupValueSelector": "",
1315
+ "textSelector": "",
1316
+ "valueSelector": "Location"
1317
+ },
1318
+ "parents": [
1319
+ "Time Period",
1320
+ "Topic"
1321
+ ],
1322
+ "filterStyle": "multi-select",
1323
+ "selectLimit": "4",
1324
+ "tier": 2
1325
+ }
1326
+ ],
1327
+ "title": "",
1328
+ "description": ""
1329
+ },
1330
+ "visualizations": {
1331
+ "dashboardFilters1728409568825": {
1332
+ "filters": [],
1333
+ "filterBehavior": "Apply Button",
1334
+ "newViz": true,
1335
+ "openModal": true,
1336
+ "uid": "dashboardFilters1728409568825",
1337
+ "type": "dashboardFilters",
1338
+ "sharedFilterIndexes": [
1339
+ 0,
1340
+ 1
1341
+ ],
1342
+ "visualizationType": "dashboardFilters",
1343
+ "dataDescription": {
1344
+ "horizontal": false,
1345
+ "series": false
1346
+ },
1347
+ "applyFiltersButtonText": "View Results"
1348
+ },
1349
+ "dashboardFilters1730314064502": {
1350
+ "filters": [],
1351
+ "filterBehavior": "Filter Change",
1352
+ "newViz": true,
1353
+ "openModal": true,
1354
+ "uid": "dashboardFilters1730314064502",
1355
+ "type": "dashboardFilters",
1356
+ "sharedFilterIndexes": [
1357
+ 2
1358
+ ],
1359
+ "visualizationType": "dashboardFilters",
1360
+ "dataDescription": {
1361
+ "horizontal": false,
1362
+ "series": false
1363
+ },
1364
+ "autoLoad": true
1365
+ },
1366
+ "markup-include1732560933641": {
1367
+ "filters": [],
1368
+ "filterBehavior": "Filter Change",
1369
+ "openModal": false,
1370
+ "uid": "markup-include1732560933641",
1371
+ "type": "markup-include",
1372
+ "contentEditor": {
1373
+ "inlineHTML": "<h2>Cessation - Medicaid Coverage of Cessation Treatments and Barriers to Treatments</h2><h3><em>{{year-quarter}}</em></h3>",
1374
+ "markupVariables": [
1375
+ {
1376
+ "columnName": "YearQuarter",
1377
+ "conditions": [],
1378
+ "name": "year-quarter",
1379
+ "tag": "{{year-quarter}}"
1380
+ }
1381
+ ],
1382
+ "showHeader": true,
1383
+ "srcUrl": "#example",
1384
+ "title": "",
1385
+ "useInlineHTML": true
1386
+ },
1387
+ "theme": "theme-blue",
1388
+ "visual": {
1389
+ "border": false,
1390
+ "accent": false,
1391
+ "background": false,
1392
+ "hideBackgroundColor": false,
1393
+ "borderColorTheme": false
1394
+ },
1395
+ "showEditorPanel": true,
1396
+ "visualizationType": "markup-include",
1397
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002",
1398
+ "dataDescription": {
1399
+ "horizontal": false,
1400
+ "series": false
1401
+ },
1402
+ "version": "4.25.1",
1403
+ "migrations": {
1404
+ "addColorMigration": true
1405
+ }
1406
+ },
1407
+ "markup-include1733775524465": {
1408
+ "filters": [],
1409
+ "filterBehavior": "Filter Change",
1410
+ "openModal": false,
1411
+ "uid": "markup-include1733775524465",
1412
+ "type": "markup-include",
1413
+ "contentEditor": {
1414
+ "inlineHTML": "† Telephone counseling is available through the state quitline.<br/><br/>\n\n<strong>Source:</strong> <a href = \"https://www.cdc.gov/statesystem/glossaryandmethodology.html\">American Lung Association State Tobacco Cessation Coverage Database (Lung Association)</a><br/><br/>\n\nSection 2502 of the Patient Protection and Affordable Care Act requires all state Medicaid programs to cover all FDA-approved tobacco cessation medications as of January 1, 2014. However, states are currently in the process of modifying their coverage to come into compliance with this requirement. Data in the STATE System on Medicaid coverage of tobacco cessation medications reflect evidence of coverage that is found in documentable sources, and may not yet reflect medications covered under this requirement.",
1415
+ "markupVariables": [],
1416
+ "showHeader": true,
1417
+ "srcUrl": "#example",
1418
+ "title": "",
1419
+ "useInlineHTML": true
1420
+ },
1421
+ "theme": "theme-blue",
1422
+ "visual": {
1423
+ "border": false,
1424
+ "accent": false,
1425
+ "background": false,
1426
+ "hideBackgroundColor": false,
1427
+ "borderColorTheme": false
1428
+ },
1429
+ "showEditorPanel": true,
1430
+ "visualizationType": "markup-include",
1431
+ "version": "4.25.1",
1432
+ "migrations": {
1433
+ "addColorMigration": true
1434
+ }
1435
+ },
1436
+ "table1740603973664": {
1437
+ "filters": [],
1438
+ "filterBehavior": "Filter Change",
1439
+ "newViz": false,
1440
+ "openModal": true,
1441
+ "uid": "table1740603973664",
1442
+ "type": "table",
1443
+ "table": {
1444
+ "label": "Data Table",
1445
+ "show": true,
1446
+ "showDownloadUrl": false,
1447
+ "showVertical": true,
1448
+ "expanded": true,
1449
+ "collapsible": true,
1450
+ "groupBy": "SubMeasure",
1451
+ "pivot": {
1452
+ "columnName": "Location",
1453
+ "valueColumns": [
1454
+ "Value"
1455
+ ]
1456
+ }
1457
+ },
1458
+ "columns": {
1459
+ "Category": {
1460
+ "name": "Category",
1461
+ "dataTable": true,
1462
+ "order": 1,
1463
+ "label": " "
1464
+ },
1465
+ "GeoLocation": {
1466
+ "name": "GeoLocation",
1467
+ "dataTable": false
1468
+ },
1469
+ "LocationAbbr": {
1470
+ "name": "LocationAbbr",
1471
+ "dataTable": false
1472
+ },
1473
+ "Measure": {
1474
+ "name": "Measure",
1475
+ "dataTable": false
1476
+ },
1477
+ "Quarter": {
1478
+ "name": "Quarter",
1479
+ "dataTable": false
1480
+ },
1481
+ "RowDisplayOrder": {
1482
+ "name": "RowDisplayOrder",
1483
+ "dataTable": false
1484
+ },
1485
+ "RowNum": {
1486
+ "name": "RowNum",
1487
+ "dataTable": false
1488
+ },
1489
+ "Topic": {
1490
+ "name": "Topic",
1491
+ "dataTable": false
1492
+ },
1493
+ "Year": {
1494
+ "name": "Year",
1495
+ "dataTable": false
1496
+ },
1497
+ "YearQuarter": {
1498
+ "name": "YearQuarter",
1499
+ "dataTable": false
1500
+ },
1501
+ "Location": {
1502
+ "label": "Location",
1503
+ "dataTable": true,
1504
+ "tooltips": false,
1505
+ "prefix": "",
1506
+ "suffix": "",
1507
+ "forestPlot": false,
1508
+ "startingPoint": "0",
1509
+ "forestPlotAlignRight": false,
1510
+ "roundToPlace": 0,
1511
+ "commas": false,
1512
+ "showInViz": false,
1513
+ "forestPlotStartingPoint": 0,
1514
+ "name": "Location",
1515
+ "order": null
1516
+ },
1517
+ "SubMeasure": {
1518
+ "name": "SubMeasure",
1519
+ "dataTable": true
1520
+ },
1521
+ "Value": {
1522
+ "label": "Value",
1523
+ "dataTable": true,
1524
+ "tooltips": false,
1525
+ "prefix": "",
1526
+ "suffix": "",
1527
+ "forestPlot": false,
1528
+ "startingPoint": "0",
1529
+ "forestPlotAlignRight": false,
1530
+ "roundToPlace": 0,
1531
+ "commas": false,
1532
+ "showInViz": false,
1533
+ "forestPlotStartingPoint": 0,
1534
+ "name": "Value"
1535
+ }
1536
+ },
1537
+ "dataFormat": {},
1538
+ "visualizationType": "table",
1539
+ "dataDescription": {
1540
+ "horizontal": false,
1541
+ "series": false
1542
+ },
1543
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002"
1544
+ }
1545
+ },
1546
+ "rows": [
1547
+ {
1548
+ "columns": [
1549
+ {
1550
+ "width": 12,
1551
+ "widget": "dashboardFilters1728409568825"
1552
+ }
1553
+ ],
1554
+ "dataDescription": {},
1555
+ "dataKey": ""
1556
+ },
1557
+ {
1558
+ "columns": [
1559
+ {
1560
+ "width": 12,
1561
+ "widget": "markup-include1732560933641"
1562
+ }
1563
+ ],
1564
+ "uuid": 1732560958095,
1565
+ "dataDescription": {},
1566
+ "dataKey": ""
1567
+ },
1568
+ {
1569
+ "columns": [
1570
+ {
1571
+ "width": 12,
1572
+ "widget": "dashboardFilters1730314064502"
1573
+ }
1574
+ ],
1575
+ "uuid": 1732560958095,
1576
+ "dataDescription": {
1577
+ "horizontal": false,
1578
+ "series": false
1579
+ }
1580
+ },
1581
+ {
1582
+ "columns": [
1583
+ {
1584
+ "width": 12,
1585
+ "widget": "table1740603973664"
1586
+ }
1587
+ ],
1588
+ "uuid": 1740603975892,
1589
+ "dataDescription": {
1590
+ "horizontal": false,
1591
+ "series": false
1592
+ },
1593
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2002",
1594
+ "multiVizColumn": "Measure",
1595
+ "expandCollapseAllButtons": true
1596
+ },
1597
+ {
1598
+ "columns": [
1599
+ {
1600
+ "width": 12,
1601
+ "widget": "markup-include1733775524465"
1602
+ }
1603
+ ],
1604
+ "uuid": 1740603975892
1605
+ }
1606
+ ],
1607
+ "label": "Search by Time Period",
1608
+ "type": "dashboard",
1609
+ "version": "4.25.1",
1610
+ "migrations": {
1611
+ "addColorMigration": true
1612
+ }
1613
+ },
1614
+ {
1615
+ "dashboard": {
1616
+ "sharedFilters": [
1617
+ {
1618
+ "key": "Measure",
1619
+ "showDropdown": true,
1620
+ "type": "urlfilter",
1621
+ "apiFilter": {
1622
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003&$select=DISTINCT%20Measure&$order=Measure",
1623
+ "valueSelector": "Measure",
1624
+ "textSelector": ""
1625
+ },
1626
+ "setByQueryParameter": "Topic",
1627
+ "tier": 1
1628
+ },
1629
+ {
1630
+ "key": "Sub-Measure",
1631
+ "showDropdown": true,
1632
+ "type": "urlfilter",
1633
+ "apiFilter": {
1634
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003&$select=DISTINCT%20SubMeasure&$order=SubMeasure",
1635
+ "valueSelector": "SubMeasure",
1636
+ "textSelector": ""
1637
+ },
1638
+ "parents": [
1639
+ "Measure"
1640
+ ],
1641
+ "tier": 2
1642
+ },
1643
+ {
1644
+ "key": "Time Period (Select up to 4)",
1645
+ "showDropdown": true,
1646
+ "type": "urlfilter",
1647
+ "filterStyle": "multi-select",
1648
+ "apiFilter": {
1649
+ "apiEndpoint": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003&$select=DISTINCT YearQuarter&$order=YearQuarter DESC",
1650
+ "subgroupValueSelector": "",
1651
+ "textSelector": "",
1652
+ "valueSelector": "YearQuarter"
1653
+ },
1654
+ "selectLimit": "4",
1655
+ "setByQueryParameter": "YearQuarter",
1656
+ "tier": 1
1657
+ }
1658
+ ]
1659
+ },
1660
+ "visualizations": {
1661
+ "dashboardFilters1728427599952": {
1662
+ "filters": [],
1663
+ "filterBehavior": "Apply Button",
1664
+ "newViz": true,
1665
+ "openModal": true,
1666
+ "uid": "dashboardFilters1728427599952",
1667
+ "type": "dashboardFilters",
1668
+ "sharedFilterIndexes": [
1669
+ 0,
1670
+ 1
1671
+ ],
1672
+ "visualizationType": "dashboardFilters",
1673
+ "dataDescription": {
1674
+ "horizontal": false,
1675
+ "series": false
1676
+ },
1677
+ "applyFiltersButtonText": "View Results"
1678
+ },
1679
+ "table1728941622851": {
1680
+ "filters": [],
1681
+ "filterBehavior": "Filter Change",
1682
+ "newViz": false,
1683
+ "openModal": true,
1684
+ "uid": "table1728941622851",
1685
+ "type": "table",
1686
+ "table": {
1687
+ "label": "Data Table",
1688
+ "show": true,
1689
+ "showDownloadUrl": false,
1690
+ "showVertical": true,
1691
+ "expanded": true,
1692
+ "collapsible": false,
1693
+ "pivot": {
1694
+ "columnName": "YearQuarter",
1695
+ "valueColumns": [
1696
+ "Value"
1697
+ ]
1698
+ }
1699
+ },
1700
+ "columns": {
1701
+ "Category": {
1702
+ "name": "Category",
1703
+ "dataTable": false
1704
+ },
1705
+ "GeoLocation": {
1706
+ "name": "GeoLocation",
1707
+ "dataTable": false
1708
+ },
1709
+ "LocationAbbr": {
1710
+ "name": "LocationAbbr",
1711
+ "dataTable": false
1712
+ },
1713
+ "Measure": {
1714
+ "name": "Measure",
1715
+ "dataTable": false
1716
+ },
1717
+ "RowDisplayOrder": {
1718
+ "name": "RowDisplayOrder",
1719
+ "dataTable": false
1720
+ },
1721
+ "RowNum": {
1722
+ "name": "RowNum",
1723
+ "dataTable": false
1724
+ },
1725
+ "SubMeasure": {
1726
+ "name": "SubMeasure",
1727
+ "dataTable": false
1728
+ },
1729
+ "Topic": {
1730
+ "name": "Topic",
1731
+ "dataTable": false
1732
+ },
1733
+ "Quarter": {
1734
+ "name": "Quarter",
1735
+ "dataTable": false
1736
+ },
1737
+ "Year": {
1738
+ "name": "Year",
1739
+ "dataTable": false
1740
+ },
1741
+ "Location": {
1742
+ "name": "Location",
1743
+ "dataTable": true,
1744
+ "label": "State",
1745
+ "order": 1
1746
+ },
1747
+ "Value": {
1748
+ "label": "Value",
1749
+ "dataTable": true,
1750
+ "tooltips": false,
1751
+ "prefix": "",
1752
+ "suffix": "",
1753
+ "forestPlot": false,
1754
+ "startingPoint": "0",
1755
+ "forestPlotAlignRight": false,
1756
+ "roundToPlace": 0,
1757
+ "commas": false,
1758
+ "showInViz": false,
1759
+ "forestPlotStartingPoint": 0,
1760
+ "name": "Value"
1761
+ }
1762
+ },
1763
+ "dataFormat": {},
1764
+ "visualizationType": "table",
1765
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003",
1766
+ "dataDescription": {
1767
+ "horizontal": false,
1768
+ "series": false
1769
+ }
1770
+ },
1771
+ "dashboardFilters1730320114271": {
1772
+ "filters": [],
1773
+ "filterBehavior": "Filter Change",
1774
+ "newViz": true,
1775
+ "openModal": true,
1776
+ "uid": "dashboardFilters1730320114271",
1777
+ "type": "dashboardFilters",
1778
+ "sharedFilterIndexes": [
1779
+ 2
1780
+ ],
1781
+ "visualizationType": "dashboardFilters",
1782
+ "dataDescription": {
1783
+ "horizontal": false,
1784
+ "series": false
1785
+ },
1786
+ "autoLoad": true
1787
+ },
1788
+ "markup-include1732561770148": {
1789
+ "filters": [],
1790
+ "filterBehavior": "Filter Change",
1791
+ "openModal": false,
1792
+ "uid": "markup-include1732561770148",
1793
+ "type": "markup-include",
1794
+ "contentEditor": {
1795
+ "inlineHTML": "<h2>Cessation - {{measure}}, {{submeasure}}</h2>",
1796
+ "markupVariables": [
1797
+ {
1798
+ "columnName": "SubMeasure",
1799
+ "conditions": [],
1800
+ "name": "submeasure",
1801
+ "tag": "{{submeasure}}"
1802
+ },
1803
+ {
1804
+ "columnName": "Measure",
1805
+ "conditions": [],
1806
+ "name": "measure",
1807
+ "tag": "{{measure}}"
1808
+ }
1809
+ ],
1810
+ "showHeader": true,
1811
+ "srcUrl": "#example",
1812
+ "title": "",
1813
+ "useInlineHTML": true
1814
+ },
1815
+ "theme": "theme-blue",
1816
+ "visual": {
1817
+ "border": false,
1818
+ "accent": false,
1819
+ "background": false,
1820
+ "hideBackgroundColor": false,
1821
+ "borderColorTheme": false
1822
+ },
1823
+ "showEditorPanel": true,
1824
+ "visualizationType": "markup-include",
1825
+ "version": "4.24.10",
1826
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003",
1827
+ "dataDescription": {
1828
+ "horizontal": false,
1829
+ "series": false
1830
+ }
1831
+ },
1832
+ "markup-include1733775544028": {
1833
+ "filters": [],
1834
+ "filterBehavior": "Filter Change",
1835
+ "openModal": false,
1836
+ "uid": "markup-include1733775544028",
1837
+ "type": "markup-include",
1838
+ "contentEditor": {
1839
+ "inlineHTML": "† Telephone counseling is available through the state quitline.<br/><br/><strong>Source:</strong> <a href = \"https://www.cdc.gov/statesystem/glossaryandmethodology.html\">American Lung Association State Tobacco Cessation Coverage Database (Lung Association)</a><br/><br/>\n\nSection 2502 of the Patient Protection and Affordable Care Act requires all state Medicaid programs to cover all FDA-approved tobacco cessation medications as of January 1, 2014. However, states are currently in the process of modifying their coverage to come into compliance with this requirement. Data in the STATE System on Medicaid coverage of tobacco cessation medications reflect evidence of coverage that is found in documentable sources, and may not yet reflect medications covered under this requirement.",
1840
+ "markupVariables": [],
1841
+ "showHeader": true,
1842
+ "srcUrl": "#example",
1843
+ "title": "",
1844
+ "useInlineHTML": true
1845
+ },
1846
+ "theme": "theme-blue",
1847
+ "visual": {
1848
+ "border": false,
1849
+ "accent": false,
1850
+ "background": false,
1851
+ "hideBackgroundColor": false,
1852
+ "borderColorTheme": false
1853
+ },
1854
+ "showEditorPanel": true,
1855
+ "visualizationType": "markup-include",
1856
+ "version": "4.25.1",
1857
+ "migrations": {
1858
+ "addColorMigration": true
1859
+ }
1860
+ }
1861
+ },
1862
+ "rows": [
1863
+ {
1864
+ "columns": [
1865
+ {
1866
+ "width": 12,
1867
+ "widget": "dashboardFilters1728427599952"
1868
+ }
1869
+ ],
1870
+ "dataDescription": {
1871
+ "horizontal": false,
1872
+ "series": false
1873
+ },
1874
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003"
1875
+ },
1876
+ {
1877
+ "columns": [
1878
+ {
1879
+ "width": 12,
1880
+ "widget": "markup-include1732561770148"
1881
+ }
1882
+ ],
1883
+ "uuid": 1732561801871,
1884
+ "dataDescription": {
1885
+ "horizontal": false,
1886
+ "series": false
1887
+ },
1888
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003"
1889
+ },
1890
+ {
1891
+ "columns": [
1892
+ {
1893
+ "width": 12,
1894
+ "widget": "dashboardFilters1730320114271"
1895
+ }
1896
+ ],
1897
+ "uuid": 1732561801871,
1898
+ "dataDescription": {
1899
+ "horizontal": false,
1900
+ "series": false
1901
+ },
1902
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003"
1903
+ },
1904
+ {
1905
+ "columns": [
1906
+ {
1907
+ "width": 12,
1908
+ "widget": "table1728941622851"
1909
+ }
1910
+ ],
1911
+ "dataDescription": {
1912
+ "horizontal": false,
1913
+ "series": false
1914
+ },
1915
+ "dataKey": "https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_cessation&$limit=2003",
1916
+ "uuid": 1732561775528
1917
+ },
1918
+ {
1919
+ "columns": [
1920
+ {
1921
+ "width": 12,
1922
+ "widget": "markup-include1733775544028"
1923
+ }
1924
+ ]
1925
+ }
1926
+ ],
1927
+ "label": "Search by All Locations",
1928
+ "type": "dashboard",
1929
+ "version": "4.25.1",
1930
+ "migrations": {
1931
+ "addColorMigration": true
1932
+ }
1933
+ }
1934
+ ],
1935
+ "migrations": {
1936
+ "addColorMigration": true
1937
+ }
1938
+ }