@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 @@
1
+ {"table":{"label":"Data Table","show":false,"showDownloadUrl":false,"showVertical":true},"errors":[],"currentViewport":"lg","id":15,"category":"General","type":"dashboard","subType":null,"orientation":null,"icon":{"key":null,"ref":null,"props":{},"_owner":null},"content":"Present multiple data visualizations with shared filter controls.","datasets":{"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder":{"dataFileSize":1427502,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010":{"dataFileSize":1427502,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020":{"dataFileSize":1427502,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder":{"dataFileSize":1427502,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=*,%20CONCAT(Percentage,%20%22%25%22)%20as%20Percentage_Format":{"dataFileSize":1521190,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=*,%20CONCAT(Percentage,%20%22%25%22)%20as%20Percentage_Format","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=*,%20CONCAT(Percentage,%20%22%25%22)%20as%20Percentage_Format"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder":{"dataFileSize":1460323,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder":{"dataFileSize":1461143,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&Percentage%20!=%22%22":{"dataFileSize":1461963,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&Percentage%20!=%22%22","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&Percentage%20!=%22%22"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder":{"dataFileSize":1462774,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=Subcategory":{"dataFileSize":1956894,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=Subcategory","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=Subcategory"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_measure_definitions_suggestedcitation&$limit=100":{"dataFileSize":8336,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_measure_definitions_suggestedcitation&$limit=100","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_measure_definitions_suggestedcitation&$limit=100"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_relatedlinks_notes":{"dataFileSize":1787,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_relatedlinks_notes","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_relatedlinks_notes"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_datasource":{"dataFileSize":2944,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_datasource","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_cove_datasource"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&$where=STLT_Display%20is%20null%20AND%20(Subcategory_Filter%20not%20like%20%22All%25%22%20AND%20Subcategory_Filter%20not%20like%20%20%22Both%25%22)":{"dataFileSize":5043110,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&$where=STLT_Display%20is%20null%20AND%20(Subcategory_Filter%20not%20like%20%22All%25%22%20AND%20Subcategory_Filter%20not%20like%20%20%22Both%25%22)","dataFileSourceType":"url","dataFileFormat":"JSON","preview":true,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&$where=STLT_Display%20is%20null%20AND%20(Subcategory_Filter%20not%20like%20%22All%25%22%20AND%20Subcategory_Filter%20not%20like%20%20%22Both%25%22)"}},"visualizationType":null,"activeVizButtonID":15,"version":"4.25.1","uuid":1738181289067,"multiDashboards":[{"label":"All States","visualizations":{"dashboardFilters1734386516729":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1734386516729","type":"dashboardFilters","sharedFilterIndexes":[0,1],"visualizationType":"dashboardFilters","applyFiltersButtonText":"Run Report"},"markup-include1734386625117":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1734386625117","type":"markup-include","contentEditor":{"inlineHTML":"<p class=\"float-right\">View Indicator Definitions: <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/adult-indicators.html\" target=\"_blank\" >Adult</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html\" target=\"_blank\" >Child</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/water-fluoridation-indicators.html\" target=\"_blank\" >Intervention Strategies</a></p>\n<br>\n<br>\n<h4>{{Indicator}}</h4>\n<h4><em>Topic: {{Topic}}</em></h4>","markupVariables":[{"columnName":"Indicator","conditions":[],"name":"Indicator","tag":"{{Indicator}}"},{"columnName":"Topic_Category","conditions":[],"name":"Topic","tag":"{{Topic}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"map1734386664345":{"annotations":[],"general":{"geoType":"us","noStateFoundMessage":"Map Unavailable","annotationDropdownText":"Annotations","geoBorderColor":"darkGray","headerColor":"theme-blue","title":"","showTitle":false,"showSidebar":true,"showDownloadButton":true,"showDownloadMediaButton":false,"displayAsHex":false,"displayStateLabels":false,"territoriesAlwaysShow":false,"language":"en","geoLabelOverride":"","hasRegions":false,"fullBorder":false,"type":"data","convertFipsCodes":true,"palette":{"isReversed":false},"allowMapZoom":true,"hideGeoColumnInTooltip":false,"hidePrimaryColumnInTooltip":false,"statePicked":{"fipsCode":"01","stateName":"Alabama"},"expandDataTable":false,"showDownloadImgButton":false,"equalNumberOptIn":true,"navigationTarget":"_self"},"type":"map","color":"sequential-blue-2(MPX)","columns":{"geo":{"name":"State","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":false,"tooltip":true,"prefix":"","suffix":"","name":"Percentage","label":"Data Value","roundToPlace":"1","useCommas":true},"navigate":{"name":""},"latitude":{"name":""},"longitude":{"name":""},"additionalColumn1":{"label":"Year","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"Year","tooltip":true}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":true,"singleRow":false,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"equalnumber","numberOfItems":4,"position":"side","title":"Data Value","style":"circles","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":false,"separateZero":false,"description":"Click to highlight"},"filters":[{"filterStyle":"dropdown","id":1740604049407,"showDropdown":true,"columnName":"Subcategory_Filter","orderedValues":["None"],"label":"Breakdown Detail","parents":[],"order":"column","orderColumn":"Subcategory_Filter_DisplayOrder"},{"filterStyle":"dropdown","id":1740604307902,"showDropdown":true,"label":"Response","columnName":"Response","orderedValues":["Yes"],"parents":[1740604049407],"order":"desc"},{"filterStyle":"dropdown","id":1740604374676,"showDropdown":true,"label":"Data Type","columnName":"Data_Type","orderedValues":["Crude Prevalence"],"parents":[1740604049407,1740604307902],"order":"column","orderColumn":"Data_Type_DisplayOrder"}],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":false,"showDownloadLinkBelow":false,"showFullGeoNameInCSV":false,"forceDisplay":false,"download":true,"indexLabel":""},"tooltips":{"appearanceType":"hover","linkLabel":"Learn More","capitalizeLabels":true,"opacity":90},"visual":{"minBubbleSize":1,"maxBubbleSize":20,"extraBubbleBorder":false,"cityStyle":"circle","cityStyleLabel":"","showBubbleZeros":false,"additionalCityStyles":[],"geoCodeCircleSize":8},"mapPosition":{"coordinates":[0,30],"zoom":1},"map":{"layers":[],"patterns":[]},"hexMap":{"type":"","shapeGroups":[{"legendTitle":"","legendDescription":"","items":[{"key":"","shape":"Arrow Up","column":"","operator":"=","value":""}]}]},"filterBehavior":"Filter Change","filterIntro":"","openModal":true,"uid":"map1734386664345","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&$where=STLT_Display%20is%20null%20AND%20(Subcategory_Filter%20not%20like%20%22All%25%22%20AND%20Subcategory_Filter%20not%20like%20%20%22Both%25%22)","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"dashboardFilters1734387348523":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1734387348523","type":"dashboardFilters","sharedFilterIndexes":[2,3],"visualizationType":"dashboardFilters","autoLoad":true},"chart1734446625220":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"","showTitle":true,"showDownloadMediaButton":false,"theme":"theme-blue","animate":false,"fontSize":"medium","lineDatapointStyle":"hover","lineDatapointColor":"Same as Line","barHasBorder":"false","isLollipopChart":false,"lollipopShape":"circle","lollipopColorStyle":"two-tone","visualizationSubType":"regular","barStyle":"","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":false,"showSuppressedSymbol":true,"showZeroValueData":false,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":50,"gridLines":false,"enablePadding":false,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":false,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"","axisPadding":0,"scalePadding":10,"tickRotation":"30","anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"labelPlacement":"On Date/Category Axis","labelOffset":""},"boxplot":{"plots":[],"borders":"true","plotOutlierValues":false,"plotNonOutlierValues":true,"labels":{"q1":"Lower Quartile","q2":"q2","q3":"Upper Quartile","q4":"q4","minimum":"Minimum","maximum":"Maximum","mean":"Mean","median":"Median","sd":"Standard Deviation","iqr":"Interquartile Range","count":"Count","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds"}},"topAxis":{"hasLine":false},"isLegendValue":false,"barThickness":0.35,"barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":2200},"xAxis":{"sortDates":false,"anchors":[],"type":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":0,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"State","axisBBox":43.760780334472656,"tickWidthMax":33},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":false},"orientation":"horizontal","color":"pinkpurple","columns":{"Year":{"label":"Year","dataTable":true,"tooltips":true,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year","series":"Percentage"}},"legend":{"hide":false,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"Click to highlight","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"Breakdown","lineMode":false,"verticalSorted":false,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":true},"position":"right"},"brush":{"height":45,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"colorblindsafe","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":true,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"1"},"confidenceKeys":{"upper":"","lower":""},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Percentage","type":"Bar","axis":"Left","tooltip":false,"dynamicCategory":"Subcategory"}],"tooltips":{"opacity":90,"singleSeries":true,"dateDisplayFormat":""},"forestPlot":{"startAt":0,"colors":{"line":"","shape":""},"lineOfNoEffect":{"show":true},"type":"","pooledResult":{"diamondHeight":5,"column":""},"estimateField":"","estimateRadius":"","shape":"square","rowHeight":20,"description":{"show":true,"text":"description","location":0},"result":{"show":true,"text":"result","location":100},"radius":{"min":2,"max":10,"scalingColumn":""},"regression":{"lower":0,"upper":0,"estimateField":0},"leftWidthOffset":0,"rightWidthOffset":0,"showZeroLine":false,"leftLabel":"","rightLabel":""},"area":{"isStacked":false},"sankey":{"title":{"defaultColor":"black"},"iterations":1,"rxValue":0.9,"overallSize":{"width":900,"height":700},"margin":{"margin_y":25,"margin_x":0},"nodeSize":{"nodeWidth":26,"nodeHeight":40},"nodePadding":55,"nodeFontColor":"black","nodeColor":{"default":"#ff8500","inactive":"#808080"},"linkColor":{"default":"#ffc900","inactive":"#D3D3D3"},"opacity":{"nodeOpacityDefault":1,"nodeOpacityInactive":0.1,"LinkOpacityDefault":1,"LinkOpacityInactive":0.1},"storyNodeFontColor":"#006778","storyNodeText":[],"nodeValueStyle":{"textBefore":"(","textAfter":")"},"data":[]},"filters":[{"filterStyle":"dropdown","id":1740604748743,"showDropdown":true,"columnName":"Subcategory_Filter","orderedValues":["None"],"label":"Breakdown Detail","order":"column","orderColumn":"Subcategory_Filter_DisplayOrder"},{"filterStyle":"dropdown","id":1740604764576,"showDropdown":true,"columnName":"Response","orderedValues":["No","Yes"],"order":"desc","label":"Response","parents":[1740604748743]},{"filterStyle":"dropdown","id":1740604783950,"showDropdown":true,"columnName":"Data_Type","orderedValues":["Crude Prevalence"],"label":"Data Type","parents":[1740604748743,1740604764576],"order":"column","orderColumn":"Data_Type_DisplayOrder"}],"openModal":true,"uid":"chart1734446625220","visualizationType":"Bar","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"migrations":{"addColorMigration":true}},"table1734447102732":{"filters":[{"filterStyle":"dropdown","id":1740604834997,"showDropdown":true,"columnName":"Subcategory_Filter","orderedValues":["None"],"label":"Breakdown Detail","order":"column","orderColumn":"Subcategory_Filter_DisplayOrder"},{"filterStyle":"dropdown","id":1740604876511,"showDropdown":true,"columnName":"Response","orderedValues":["No","Yes"],"label":"Response","order":"desc","parents":[1740604834997]},{"filterStyle":"dropdown","id":1740604916006,"showDropdown":true,"columnName":"Data_Type","orderedValues":["Crude Prevalence"],"label":"Data Type","order":"column","orderColumn":"Data_Type_DisplayOrder"}],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1734447102732","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"groupBy":"State"},"columns":{"Subcategory":{"label":"Breakdown Detail","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory","order":1},"Percentage":{"label":"Data Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage","order":null},"95%_CI":{"label":"95% CI","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"95%_CI","order":4},"n":{"label":"n","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","order":5},"Category":{"label":"Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category"},"Data_Type":{"label":"Data_Type","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type"},"Datasource":{"label":"Datasource","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Datasource"},"Footnotes":{"label":"Footnotes","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Footnotes"},"GeoLocation_Lat":{"label":"GeoLocation_Lat","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Lat"},"GeoLocation_Long":{"label":"GeoLocation_Long","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Long"},"High_CI":{"label":"High_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"High_CI"},"Indicator":{"label":"Indicator","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator"},"Indicator_Code":{"label":"Indicator_Code","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator_Code"},"Low_CI":{"label":"Low_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Low_CI"},"Response":{"label":"Response","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response"},"STLT_Display":{"label":"STLT_Display","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"STLT_Display"},"State_Abrr":{"label":"State_Abrr","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Abrr"},"Subcategory_Filter":{"label":"Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter"},"TopicId":{"label":"TopicId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"TopicId"},"Topic_Category":{"label":"Topic_Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Topic_Category"},"Year":{"label":"Year","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year","order":2},"Year_Value":{"label":"Year_Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Value"},"FIPSCode":{"label":"FIPSCode","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"FIPSCode"},"Createdon":{"label":"Createdon","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Createdon"},"Category_DisplayOrder":{"label":"Category_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category_DisplayOrder"},"Data_Value_Unit":{"label":"Data_Value_Unit","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value_Unit"},"County_DisplayOrder":{"label":"County_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"County_DisplayOrder"},"RowId":{"label":"RowId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"RowId"},"State_DisplayOrder":{"label":"State_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_DisplayOrder"},"State_Subcategory_Filter":{"label":"State_Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Subcategory_Filter"},"Subcategory_Filter_DisplayOrder":{"label":"Subcategory_Filter_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DisplayOrder"},"Percentage_Format":{"label":"Data Value","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage_Format","order":3},"Year_Filter":{"label":"Year_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Filter"},"Graph_StartYear":{"label":"Graph_StartYear","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Graph_StartYear"},"Data_Type_DisplayOrder":{"label":"Data_Type_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type_DisplayOrder"},"Subcategory_Filter_DataValue":{"label":"Subcategory_Filter_DataValue","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DataValue"},"Subcategory_DisplayOrder":{"label":"Subcategory_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_DisplayOrder"},"Response_DisplayOrder":{"label":"Response_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_DisplayOrder"}},"dataFormat":{},"visualizationType":"table","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"general":{"showDownloadButton":true}},"markup-include1736877844309":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736877844309","type":"markup-include","contentEditor":{"inlineHTML":"<hr>\n<h5><strong>Notes</strong></h5>\n<ol class=\"ml-3\">\n<li>For Intervention Strategies, Adjusted, Consecutive, and Natural fluoridation statuses are subsets of the Fluoridated status.</li>\n<li>For Intervention Strategies, Non-fluoridated water systems are those with insufficient fluoride for oral health benefits. See <a href=\"https://www.cdc.gov/oralhealthdata/glossary/index.html\" target=\"_blank\">glossary</a>.</li>\n</ol>\n<br>\n<p>Indian Health Service data are included in the chart & table views.</p>\n<p>Populations on public water systems may exceed the county census population. Many water systems span multiple counties. WFRS collects population data for primary and secondary counties for each water system. However, due to difficulty in assigning population values to multiple counties, the primary county information may be over-estimated.</p>\n<p>Participation in sharing county level data is voluntary and state programs determine if data will be shown. Please contact your state oral health or drinking water program for additional information.</p>\n<p>CDC relies on the state oral health or drinking water programs to keep data in WFRS up to date. Please contact your state oral health or drinking water program with questions.</p>\n<br>\n<h5><strong>Measure Definitions</strong></h5>\n<p>% - Percentage</p>\n<p>CI - 95% Confidence Interval</p>\n<p>n - Cell Size</p>\n<p>H.S. - High School</p>\n<p>G.E.D. - General Equivalency Diploma</p>\n<p>N - Number of students in sample</p>\n<p>Data unavailable - Prevalence estimate not available if the unweighted sample size for the denominator was less than 50 or the Relative Standard Error (RSE) is greater than 0.3 or if the state did not collect data for that calendar year.</p>\n<p>NA - Not Applicable</p>\n<p>Percentages are weighted to population characteristics.</p>\n<br>\n<h5><strong>Data Source</strong></h5>\n<p><a href=\"https://www.cdc.gov/brfss/index.html\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a></p>\n<p><a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html#:~:text=Surveys%20used-,Basic%20Screening%20Survey,-States%20and%20other\" target=\"_blank\">State Oral Health Survey</a></p>\n<p><a href=\"https://www.cdc.gov/fluoridation/php/statistics/index.html\" target=\"_blank\">CDC Water Fluoridation Reporting System (WFRS)</a></p>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}}},"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=distinct%20Topic_Category&$order=Topic_Category","valueSelector":"Topic_Category","textSelector":""},"tier":1},{"key":"Indicator","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=distinct%20Indicator,%20Indicator_Code&$order=Indicator","valueSelector":"Indicator_Code","textSelector":"Indicator"},"parents":["Topic"],"tier":2},{"key":"Year","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=distinct%20Year_Filter&$order=Year_Filter%20DESC&Year_Filter%20!=%20%22Not%20Latest%20Data%22","valueSelector":"Year_Filter","textSelector":""},"parents":["Topic","Indicator"],"tier":2},{"key":"Breakdown","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$select=distinct%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder","valueSelector":"Category","textSelector":""},"parents":["Topic","Indicator","Year"],"tier":2}]},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1734386516729"},{},{}]},{"columns":[{"width":12,"widget":"markup-include1734386625117"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder"},{"columns":[{"width":12,"widget":"dashboardFilters1734387348523"}],"uuid":1734387344587},{"columns":[{"width":12,"widget":"map1734386664345"},{"width":12,"widget":"chart1734446625220"},{"width":12,"widget":"table1734447102732"}],"toggle":true,"dataDescription":{},"dataKey":"","uuid":1734387344587},{"columns":[{"width":12,"widget":"markup-include1736877844309"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20000&$where=STLT_Display%20is%20null&$order=State_DisplayOrder,Subcategory_DisplayOrder"}]},{"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"State","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$select=distinct%20State,%20State_DisplayOrder&$order=State_DisplayOrder&Datasource=%22WFRS%22&State!=%22United%20States%22","valueSelector":"State","textSelector":""},"tier":1},{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010&$select=distinct%20Topic_Category&$order=Topic_Category","valueSelector":"Topic_Category","textSelector":""},"parents":["State"],"tier":2},{"key":"Indicator","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010&$select=distinct%20Indicator,%20Indicator_Code&$order=Indicator","valueSelector":"Indicator_Code","textSelector":"Indicator"},"parents":["State","Topic"],"tier":2},{"key":"Year","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Year_Filter&$order=Year_Filter%20DESC&Year_Filter%20!=%20%22Not%20Latest%20Data%22","valueSelector":"Year_Filter","textSelector":""},"parents":["State","Topic","Indicator"],"usedBy":[3],"tier":2},{"key":"Breakdown","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder","valueSelector":"Category","textSelector":""},"parents":["Year","State","Topic","Indicator"],"usedBy":[3],"tier":2},{"key":"Data Type","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Data_Type,%20Data_Type_DisplayOrder&$order=Data_Type_DisplayOrder","valueSelector":"Data_Type","textSelector":""},"parents":["Year","Breakdown","State","Topic","Indicator"],"usedBy":[3],"tier":2},{"key":"Breakdown ","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder","valueSelector":"Category","textSelector":""},"parents":["State","Topic","Indicator"],"usedBy":[6],"tier":2},{"key":"Response ","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Response&$order=Response%20desc","valueSelector":"Response","textSelector":""},"parents":["Breakdown ","State","Topic","Indicator"],"usedBy":[6],"tier":2},{"key":"Data Type ","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$select=distinct%20Data_Type,%20Data_Type_DisplayOrder&$order=Data_Type_DisplayOrder","valueSelector":"Data_Type","textSelector":""},"parents":["Breakdown ","Response ","State","Topic","Indicator"],"usedBy":[6],"tier":2}]},"visualizations":{"dashboardFilters1736961149363":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1736961149363","type":"dashboardFilters","sharedFilterIndexes":[0,1,2],"visualizationType":"dashboardFilters","applyFiltersButtonText":"Run Report"},"markup-include1736961615622":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736961615622","type":"markup-include","contentEditor":{"inlineHTML":"<p class=\"float-right\">View Indicator Definitions: <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/adult-indicators.html\" target=\"_blank\" >Adult</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html\" target=\"_blank\" >Child</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/water-fluoridation-indicators.html\" target=\"_blank\" >Intervention Strategies</a></p>\n<br>\n<br>\n<h3>Details for a Specific Year</h3>\n<hr>\n<h4>{{Indicator}}</h4>\n<h4><em>Topic: {{Topic}}</em></h4>","markupVariables":[{"columnName":"Indicator","conditions":[],"name":"Indicator","tag":"{{Indicator}}"},{"columnName":"Topic_Category","conditions":[],"name":"Topic","tag":"{{Topic}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"dashboardFilters1736961654443":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1736961654443","type":"dashboardFilters","sharedFilterIndexes":[3,4,5],"visualizationType":"dashboardFilters","autoLoad":true},"chart1736977274587":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"","showTitle":false,"showDownloadMediaButton":false,"theme":"theme-blue","animate":false,"fontSize":"medium","lineDatapointStyle":"hover","lineDatapointColor":"Same as Line","barHasBorder":"false","isLollipopChart":false,"lollipopShape":"circle","lollipopColorStyle":"two-tone","visualizationSubType":"regular","barStyle":"","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":false,"showSuppressedSymbol":true,"showZeroValueData":false,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":"130","gridLines":true,"enablePadding":true,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":false,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"5","axisPadding":0,"scalePadding":"0","tickRotation":0,"anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"label":"Data Value"},"boxplot":{"plots":[],"borders":"true","plotOutlierValues":false,"plotNonOutlierValues":true,"labels":{"q1":"Lower Quartile","q2":"q2","q3":"Upper Quartile","q4":"q4","minimum":"Minimum","maximum":"Maximum","mean":"Mean","median":"Median","sd":"Standard Deviation","iqr":"Interquartile Range","count":"Count","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds"}},"topAxis":{"hasLine":false},"isLegendValue":false,"barThickness":"0.75","barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":750},"xAxis":{"sortDates":false,"anchors":[],"type":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":0,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"Response","axisBBox":29.860000610351562,"tickWidthMax":25},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":false},"orientation":"vertical","color":"pinkpurple","columns":{"Year":{"label":"Year","dataTable":true,"tooltips":true,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year","series":"Percentage"}},"legend":{"hide":false,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"Click to highlight","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"Breakdown","lineMode":false,"verticalSorted":false,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":true},"position":"right"},"brush":{"height":45,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"colorblindsafe","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":true,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"1"},"confidenceKeys":{},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Percentage","type":"Bar","axis":"Left","tooltip":true,"dynamicCategory":"Subcategory","name":""}],"tooltips":{"opacity":90,"singleSeries":true,"dateDisplayFormat":""},"forestPlot":{"startAt":0,"colors":{"line":"","shape":""},"lineOfNoEffect":{"show":true},"type":"","pooledResult":{"diamondHeight":5,"column":""},"estimateField":"","estimateRadius":"","shape":"square","rowHeight":20,"description":{"show":true,"text":"description","location":0},"result":{"show":true,"text":"result","location":100},"radius":{"min":2,"max":10,"scalingColumn":""},"regression":{"lower":0,"upper":0,"estimateField":0},"leftWidthOffset":0,"rightWidthOffset":0,"showZeroLine":false,"leftLabel":"","rightLabel":""},"area":{"isStacked":false},"sankey":{"title":{"defaultColor":"black"},"iterations":1,"rxValue":0.9,"overallSize":{"width":900,"height":700},"margin":{"margin_y":25,"margin_x":0},"nodeSize":{"nodeWidth":26,"nodeHeight":40},"nodePadding":55,"nodeFontColor":"black","nodeColor":{"default":"#ff8500","inactive":"#808080"},"linkColor":{"default":"#ffc900","inactive":"#D3D3D3"},"opacity":{"nodeOpacityDefault":1,"nodeOpacityInactive":0.1,"LinkOpacityDefault":1,"LinkOpacityInactive":0.1},"storyNodeFontColor":"#006778","storyNodeText":[],"nodeValueStyle":{"textBefore":"(","textAfter":")"},"data":[]},"filters":[],"openModal":true,"uid":"chart1736977274587","visualizationType":"Bar","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"migrations":{"addColorMigration":true}},"table1736977744648":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1736977744648","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"groupBy":"Response"},"columns":{"Subcategory":{"label":"Breakdown Detail","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory","order":1},"95%_CI":{"label":"95% CI","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"order":4,"name":"95%_CI"},"n":{"label":"n","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","order":5},"Category":{"label":"Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category"},"Data_Type":{"label":"Data_Type","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type"},"Datasource":{"label":"Datasource","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Datasource"},"FIPSCode":{"name":"FIPSCode","dataTable":false},"Footnotes":{"name":"Footnotes","dataTable":false},"Year":{"name":"Year","dataTable":true,"label":"Year","order":2},"Year_Value":{"name":"Year_Value","dataTable":false},"TopicId":{"name":"TopicId","dataTable":false},"Percentage":{"name":"Percentage","dataTable":false,"order":null,"label":"Data Value","commas":true,"roundToPlace":"1"},"Low_CI":{"name":"Low_CI","dataTable":false},"State":{"name":"State","dataTable":false},"State_Abrr":{"name":"State_Abrr","dataTable":false},"STLT_Display":{"name":"STLT_Display","dataTable":false},"GeoLocation_Lat":{"name":"GeoLocation_Lat","dataTable":false},"GeoLocation_Long":{"name":"GeoLocation_Long","dataTable":false},"High_CI":{"name":"High_CI","dataTable":false},"Indicator":{"name":"Indicator","dataTable":false},"Indicator_Code":{"name":"Indicator_Code","dataTable":false},"Subcategory_Filter":{"name":"Subcategory_Filter","dataTable":false},"Topic_Category":{"name":"Topic_Category","dataTable":false},"Category_DisplayOrder":{"label":"Category_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category_DisplayOrder"},"County_DisplayOrder":{"label":"County_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"County_DisplayOrder"},"Createdon":{"label":"Createdon","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Createdon"},"Data_Value_Unit":{"label":"Data_Value_Unit","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value_Unit"},"RowId":{"label":"RowId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"RowId"},"State_DisplayOrder":{"label":"State_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_DisplayOrder"},"State_Subcategory_Filter":{"label":"State_Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Subcategory_Filter"},"Subcategory_Filter_DisplayOrder":{"label":"Subcategory_Filter_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DisplayOrder"},"Percentage_Format":{"label":"Data Value","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage_Format","order":3},"Year_Filter":{"label":"Year_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Filter"},"Graph_StartYear":{"label":"Graph_StartYear","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Graph_StartYear"},"Data_Type_DisplayOrder":{"label":"Data_Type_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type_DisplayOrder"},"Subcategory_Filter_DataValue":{"label":"Subcategory_Filter_DataValue","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DataValue"},"Subcategory_DisplayOrder":{"label":"Subcategory_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_DisplayOrder"},"Response_DisplayOrder":{"label":"Response_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_DisplayOrder"}},"dataFormat":{},"visualizationType":"table","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"general":{"showDownloadButton":true}},"markup-include1736979587491":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736979587491","type":"markup-include","contentEditor":{"inlineHTML":"<h3>Trends over Time</h3>\n<hr>\n<h4>{{Indicator}}</h4>\n<h4><em>Topic: {{Topic}}</em></h4>","markupVariables":[{"columnName":"Indicator","conditions":[],"name":"Indicator","tag":"{{Indicator}}"},{"columnName":"Topic_Category","conditions":[],"name":"Topic","tag":"{{Topic}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"dashboardFilters1736979794367":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1736979794367","type":"dashboardFilters","sharedFilterIndexes":[6,7,8],"visualizationType":"dashboardFilters","autoLoad":true},"chart1736979946730":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"","showTitle":false,"showDownloadMediaButton":false,"theme":"theme-blue","animate":false,"fontSize":"medium","lineDatapointStyle":"always show","lineDatapointColor":"Same as Line","barHasBorder":"false","isLollipopChart":false,"lollipopShape":"circle","lollipopColorStyle":"two-tone","visualizationSubType":"regular","barStyle":"flat","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":false,"showSuppressedSymbol":true,"showZeroValueData":false,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":"130","gridLines":true,"enablePadding":true,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":false,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"5","axisPadding":0,"scalePadding":"0","tickRotation":0,"anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"label":"Data Value","labelsAboveGridlines":false,"labelOffset":""},"boxplot":{"plots":[],"borders":"true","plotOutlierValues":false,"plotNonOutlierValues":true,"labels":{"q1":"Lower Quartile","q2":"q2","q3":"Upper Quartile","q4":"q4","minimum":"Minimum","maximum":"Maximum","mean":"Mean","median":"Median","sd":"Standard Deviation","iqr":"Interquartile Range","count":"Count","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds"}},"topAxis":{"hasLine":false},"isLegendValue":false,"barThickness":0.35,"barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":750},"xAxis":{"sortDates":false,"anchors":[],"type":"date-time","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":0,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":true,"sortByRecentDate":false,"dataKey":"Graph_StartYear","dateParseFormat":"%Y","dateDisplayFormat":"%Y","tickWidthMax":39,"axisBBox":29.860000610351562},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"%Y","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":false},"orientation":"vertical","color":"pinkpurple","columns":{"Year":{"label":"Year","dataTable":true,"tooltips":true,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year","series":"Percentage"}},"legend":{"hide":false,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"Click to highlight","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"Breakdown","lineMode":false,"verticalSorted":false,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":true},"position":"right"},"brush":{"height":45,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"colorblindsafe","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":true,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"1"},"confidenceKeys":{},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Percentage","type":"Line","axis":"Left","tooltip":true,"dynamicCategory":"Subcategory"}],"tooltips":{"opacity":90,"singleSeries":false,"dateDisplayFormat":"%Y"},"forestPlot":{"startAt":0,"colors":{"line":"","shape":""},"lineOfNoEffect":{"show":true},"type":"","pooledResult":{"diamondHeight":5,"column":""},"estimateField":"","estimateRadius":"","shape":"square","rowHeight":20,"description":{"show":true,"text":"description","location":0},"result":{"show":true,"text":"result","location":100},"radius":{"min":2,"max":10,"scalingColumn":""},"regression":{"lower":0,"upper":0,"estimateField":0},"leftWidthOffset":0,"rightWidthOffset":0,"showZeroLine":false,"leftLabel":"","rightLabel":""},"area":{"isStacked":false},"sankey":{"title":{"defaultColor":"black"},"iterations":1,"rxValue":0.9,"overallSize":{"width":900,"height":700},"margin":{"margin_y":25,"margin_x":0},"nodeSize":{"nodeWidth":26,"nodeHeight":40},"nodePadding":55,"nodeFontColor":"black","nodeColor":{"default":"#ff8500","inactive":"#808080"},"linkColor":{"default":"#ffc900","inactive":"#D3D3D3"},"opacity":{"nodeOpacityDefault":1,"nodeOpacityInactive":0.1,"LinkOpacityDefault":1,"LinkOpacityInactive":0.1},"storyNodeFontColor":"#006778","storyNodeText":[],"nodeValueStyle":{"textBefore":"(","textAfter":")"},"data":[]},"filters":[],"openModal":true,"uid":"chart1736979946730","visualizationType":"Line","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"migrations":{"addColorMigration":true},"allowLineToBarGraph":false},"table1737153966802":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1737153966802","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"groupBy":"Year"},"columns":{"Subcategory":{"label":"Breakdown Detail","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory","order":1},"Percentage":{"label":"Data Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage","order":null},"95%_CI":{"label":"95% CI","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"95%_CI","order":3},"n":{"label":"n","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","order":3},"Category":{"label":"Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category"},"Data_Type":{"label":"Data_Type","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type"},"Datasource":{"label":"Datasource","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Datasource"},"FIPSCode":{"label":"FIPSCode","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"FIPSCode"},"Footnotes":{"label":"Footnotes","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Footnotes"},"GeoLocation_Lat":{"label":"GeoLocation_Lat","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Lat"},"GeoLocation_Long":{"label":"GeoLocation_Long","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Long"},"High_CI":{"label":"High_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"High_CI"},"Indicator":{"label":"Indicator","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator"},"Indicator_Code":{"label":"Indicator_Code","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator_Code"},"Low_CI":{"label":"Low_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Low_CI"},"Response":{"label":"Response","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response"},"STLT_Display":{"label":"STLT_Display","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"STLT_Display"},"State":{"label":"State","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State"},"State_Abrr":{"label":"State_Abrr","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Abrr"},"Subcategory_Filter":{"label":"Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter"},"TopicId":{"label":"TopicId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"TopicId"},"Topic_Category":{"label":"Topic_Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Topic_Category"},"Year_Value":{"label":"Year_Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Value"},"Category_DisplayOrder":{"label":"Category_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category_DisplayOrder"},"County_DisplayOrder":{"label":"County_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"County_DisplayOrder"},"Createdon":{"label":"Createdon","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Createdon"},"Data_Value_Unit":{"label":"Data_Value_Unit","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value_Unit"},"RowId":{"label":"RowId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"RowId"},"State_DisplayOrder":{"label":"State_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_DisplayOrder"},"State_Subcategory_Filter":{"label":"State_Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Subcategory_Filter"},"Subcategory_Filter_DisplayOrder":{"label":"Subcategory_Filter_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DisplayOrder"},"Percentage_Format":{"label":"Data Value","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage_Format","order":2},"Year_Filter":{"label":"Year_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Filter"},"Graph_StartYear":{"label":"Graph_StartYear","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Graph_StartYear"},"Data_Type_DisplayOrder":{"label":"Data_Type_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type_DisplayOrder"},"Subcategory_Filter_DataValue":{"label":"Subcategory_Filter_DataValue","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DataValue"},"Subcategory_DisplayOrder":{"label":"Subcategory_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_DisplayOrder"},"Response_DisplayOrder":{"label":"Response_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_DisplayOrder"}},"dataFormat":{},"visualizationType":"table","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false}},"markup-include1738181251196":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1738181251196","type":"markup-include","contentEditor":{"inlineHTML":"<hr>\n<h5><strong>Notes</strong></h5>\n<ol class=\"ml-3\">\n<li>For Intervention Strategies, Adjusted, Consecutive, and Natural fluoridation statuses are subsets of the Fluoridated status.</li>\n<li>For Intervention Strategies, Non-fluoridated water systems are those with insufficient fluoride for oral health benefits. See <a href=\"https://www.cdc.gov/oralhealthdata/glossary/index.html\" target=\"_blank\">glossary</a>.</li>\n</ol>\n<br>\n<p>Indian Health Service data are included in the chart & table views.</p>\n<p>Populations on public water systems may exceed the county census population. Many water systems span multiple counties. WFRS collects population data for primary and secondary counties for each water system. However, due to difficulty in assigning population values to multiple counties, the primary county information may be over-estimated.</p>\n<p>Participation in sharing county level data is voluntary and state programs determine if data will be shown. Please contact your state oral health or drinking water program for additional information.</p>\n<p>CDC relies on the state oral health or drinking water programs to keep data in WFRS up to date. Please contact your state oral health or drinking water program with questions.</p>\n<br>\n<h5><strong>Measure Definitions</strong></h5>\n<p>% - Percentage</p>\n<p>CI - 95% Confidence Interval</p>\n<p>n - Cell Size</p>\n<p>H.S. - High School</p>\n<p>G.E.D. - General Equivalency Diploma</p>\n<p>N - Number of students in sample</p>\n<p>Data unavailable - Prevalence estimate not available if the unweighted sample size for the denominator was less than 50 or the Relative Standard Error (RSE) is greater than 0.3 or if the state did not collect data for that calendar year.</p>\n<p>NA - Not Applicable</p>\n<p>Percentages are weighted to population characteristics.</p>\n<br>\n<h5><strong>Data Source</strong></h5>\n<p><a href=\"https://www.cdc.gov/brfss/index.html\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a></p>\n<p><a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html#:~:text=Surveys%20used-,Basic%20Screening%20Survey,-States%20and%20other\" target=\"_blank\">State Oral Health Survey</a></p>\n<p><a href=\"https://www.cdc.gov/fluoridation/php/statistics/index.html\" target=\"_blank\">CDC Water Fluoridation Reporting System (WFRS)</a></p>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","version":"4.25.1","migrations":{"addColorMigration":true}}},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1736961149363"}]},{"columns":[{"width":12,"widget":"markup-include1736961615622"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010"},{"columns":[{"width":12,"widget":"dashboardFilters1736961654443"}]},{"columns":[{"width":12,"widget":"chart1736977274587"},{"width":12,"widget":"table1736977744648"},{"width":12}],"toggle":true,"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2001&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Response_DisplayOrder,Subcategory_DisplayOrder"},{"columns":[{"width":12,"widget":"markup-include1736979587491"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20010"},{"columns":[{"width":12,"widget":"dashboardFilters1736979794367"}]},{"columns":[{"width":12,"widget":"chart1736979946730"},{"width":12,"widget":"table1737153966802"},{"width":12}],"toggle":true,"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20002&$where=(Subcategory_Filter%20like%20%27All%%27%20OR%20Subcategory_Filter%20like%20%20%22Both%%22%20OR%20Subcategory_Filter%20like%20%20%22None%22%20OR%20Subcategory_Filter%20like%20%20%20%22Controlled%22%20OR%20Subcategory_Filter%20like%22Not%20Controlled%22)%20AND%20STLT_Display%20is%20null&$order=State,Year,Subcategory_DisplayOrder"},{"columns":[{"width":12,"widget":"markup-include1738181251196"}]}],"label":"Single State","type":"dashboard","version":"4.25.1","migrations":{"addColorMigration":true}},{"label":"All Counties","visualizations":{"dashboardFilters1736962489640":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1736962489640","type":"dashboardFilters","sharedFilterIndexes":[0,1,2],"visualizationType":"dashboardFilters","applyFiltersButtonText":"Run Report"},"markup-include1736962627796":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736962627796","type":"markup-include","contentEditor":{"inlineHTML":"<p class=\"float-right\">View Indicator Definitions: <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/adult-indicators.html\" target=\"_blank\" >Adult</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html\" target=\"_blank\" >Child</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/water-fluoridation-indicators.html\" target=\"_blank\" >Intervention Strategies</a></p>\n<br>\n<br>\n<h3>{{Indicator}}</h3>\n<h4><em>Topic: {{Topic}}</em></h4>","markupVariables":[{"columnName":"Topic_Category","conditions":[],"name":"Topic","tag":"{{Topic}}"},{"columnName":"Indicator","conditions":[],"name":"Indicator","tag":"{{Indicator}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"dashboardFilters1736962738217":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1736962738217","type":"dashboardFilters","sharedFilterIndexes":[3],"visualizationType":"dashboardFilters","autoLoad":true},"map1736978602648":{"annotations":[],"general":{"geoType":"us-county","noStateFoundMessage":"Map Unavailable","annotationDropdownText":"Annotations","geoBorderColor":"darkGray","headerColor":"theme-blue","title":"","showTitle":false,"showSidebar":true,"showDownloadButton":true,"showDownloadMediaButton":false,"displayAsHex":false,"displayStateLabels":false,"territoriesAlwaysShow":false,"language":"en","geoLabelOverride":"","hasRegions":false,"fullBorder":false,"type":"data","convertFipsCodes":true,"palette":{"isReversed":false},"allowMapZoom":true,"hideGeoColumnInTooltip":false,"hidePrimaryColumnInTooltip":false,"statePicked":{"fipsCode":"01","stateName":"Alabama"},"expandDataTable":false,"showDownloadImgButton":false,"subtext":"","introText":"<strong>Click on a county to zoom in.</strong>","equalNumberOptIn":true,"navigationTarget":"_self","footnotes":"States for which no county-level intervention strategies data was available have been excluded."},"type":"map","color":"greenblue","columns":{"geo":{"name":"FIPSCode","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":true,"tooltip":true,"prefix":"","suffix":"","name":"Percentage","label":"Data Value","roundToPlace":"1","useCommas":true},"navigate":{"name":""},"latitude":{"name":"GeoLocation_Lat"},"longitude":{"name":"GeoLocation_Long"}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":true,"singleRow":false,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"equalnumber","numberOfItems":4,"position":"side","title":"Data Value","style":"circles","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":false,"description":"Click to highlight"},"filters":[],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"showFullGeoNameInCSV":false,"forceDisplay":false,"download":true,"indexLabel":""},"tooltips":{"appearanceType":"hover","linkLabel":"Learn More","capitalizeLabels":true,"opacity":90},"visual":{"minBubbleSize":1,"maxBubbleSize":20,"extraBubbleBorder":false,"cityStyle":"circle","cityStyleLabel":"","showBubbleZeros":false,"additionalCityStyles":[],"geoCodeCircleSize":8},"mapPosition":{"coordinates":[0,30],"zoom":1},"map":{"layers":[],"patterns":[]},"hexMap":{"type":"","shapeGroups":[{"legendTitle":"","legendDescription":"","items":[{"key":"","shape":"Arrow Up","column":"","operator":"=","value":""}]}]},"filterBehavior":"Filter Change","filterIntro":"","openModal":true,"uid":"map1736978602648","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&Percentage%20!=%22%22","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"markup-include1737040830561":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1737040830561","type":"markup-include","contentEditor":{"inlineHTML":"<hr>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"dashboardFilters1737040886134":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1737040886134","type":"dashboardFilters","sharedFilterIndexes":[4,5],"visualizationType":"dashboardFilters","autoLoad":true},"chart1737040898933":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"","showTitle":false,"showDownloadMediaButton":false,"theme":"theme-blue","animate":false,"fontSize":"medium","lineDatapointStyle":"hover","lineDatapointColor":"Same as Line","barHasBorder":"false","isLollipopChart":false,"lollipopShape":"circle","lollipopColorStyle":"two-tone","visualizationSubType":"regular","barStyle":"","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":false,"showSuppressedSymbol":true,"showZeroValueData":false,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":50,"gridLines":false,"enablePadding":false,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":false,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"","axisPadding":0,"scalePadding":10,"tickRotation":"30","anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"labelPlacement":"On Date/Category Axis"},"boxplot":{"plots":[],"borders":"true","plotOutlierValues":false,"plotNonOutlierValues":true,"labels":{"q1":"Lower Quartile","q2":"q2","q3":"Upper Quartile","q4":"q4","minimum":"Minimum","maximum":"Maximum","mean":"Mean","median":"Median","sd":"Standard Deviation","iqr":"Interquartile Range","count":"Count","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds"}},"topAxis":{"hasLine":false},"isLegendValue":false,"barThickness":0.35,"barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":2680},"xAxis":{"sortDates":false,"anchors":[],"type":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":0,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"STLT_Display","axisBBox":64.7842025756836,"tickWidthMax":75},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":false},"orientation":"horizontal","color":"pinkpurple","columns":{},"legend":{"hide":false,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"Click to highlight","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"Water Fluoridation Type","lineMode":false,"verticalSorted":false,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":true},"position":"right"},"brush":{"height":45,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"colorblindsafe","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":true,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"1"},"confidenceKeys":{},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Percentage","type":"Bar","axis":"Left","tooltip":true,"dynamicCategory":"Data_Type","name":""}],"tooltips":{"opacity":90,"singleSeries":true,"dateDisplayFormat":""},"forestPlot":{"startAt":0,"colors":{"line":"","shape":""},"lineOfNoEffect":{"show":true},"type":"","pooledResult":{"diamondHeight":5,"column":""},"estimateField":"","estimateRadius":"","shape":"square","rowHeight":20,"description":{"show":true,"text":"description","location":0},"result":{"show":true,"text":"result","location":100},"radius":{"min":2,"max":10,"scalingColumn":""},"regression":{"lower":0,"upper":0,"estimateField":0},"leftWidthOffset":0,"rightWidthOffset":0,"showZeroLine":false,"leftLabel":"","rightLabel":""},"area":{"isStacked":false},"sankey":{"title":{"defaultColor":"black"},"iterations":1,"rxValue":0.9,"overallSize":{"width":900,"height":700},"margin":{"margin_y":25,"margin_x":0},"nodeSize":{"nodeWidth":26,"nodeHeight":40},"nodePadding":55,"nodeFontColor":"black","nodeColor":{"default":"#ff8500","inactive":"#808080"},"linkColor":{"default":"#ffc900","inactive":"#D3D3D3"},"opacity":{"nodeOpacityDefault":1,"nodeOpacityInactive":0.1,"LinkOpacityDefault":1,"LinkOpacityInactive":0.1},"storyNodeFontColor":"#006778","storyNodeText":[],"nodeValueStyle":{"textBefore":"(","textAfter":")"},"data":[]},"filters":[],"openModal":true,"uid":"chart1737040898933","visualizationType":"Bar","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"migrations":{"addColorMigration":true}},"table1737659200469":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1737659200469","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"groupBy":"STLT_Display"},"columns":{"Data_Type":{"label":"Data Type","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type","order":1},"Percentage":{"label":"Data Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage","order":null},"95%_CI":{"label":"95% CI","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"95%_CI","order":3},"n":{"label":"n","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","order":4},"Category":{"name":"Category","dataTable":false},"Category_DisplayOrder":{"name":"Category_DisplayOrder","dataTable":false},"County_DisplayOrder":{"name":"County_DisplayOrder","dataTable":false},"Createdon":{"name":"Createdon","dataTable":false},"Data_Value_Unit":{"name":"Data_Value_Unit","dataTable":false},"Datasource":{"name":"Datasource","dataTable":false},"Footnotes":{"name":"Footnotes","dataTable":false},"GeoLocation_Lat":{"name":"GeoLocation_Lat","dataTable":false},"GeoLocation_Long":{"name":"GeoLocation_Long","dataTable":false},"FIPSCode":{"name":"FIPSCode","dataTable":false},"Indicator":{"name":"Indicator","dataTable":false},"Indicator_Code":{"name":"Indicator_Code","dataTable":false},"High_CI":{"name":"High_CI","dataTable":false},"Low_CI":{"name":"Low_CI","dataTable":false},"RowId":{"name":"RowId","dataTable":false},"Year_Filter":{"name":"Year_Filter","dataTable":false},"Year":{"name":"Year","dataTable":false},"Year_Value":{"name":"Year_Value","dataTable":false},"Topic_Category":{"name":"Topic_Category","dataTable":false},"State":{"name":"State","dataTable":false},"State_Abrr":{"name":"State_Abrr","dataTable":false},"State_DisplayOrder":{"name":"State_DisplayOrder","dataTable":false},"State_Subcategory_Filter":{"name":"State_Subcategory_Filter","dataTable":false},"TopicId":{"name":"TopicId","dataTable":false},"Subcategory":{"name":"Subcategory","dataTable":false},"Subcategory_Filter":{"name":"Subcategory_Filter","dataTable":false},"Subcategory_Filter_DisplayOrder":{"name":"Subcategory_Filter_DisplayOrder","dataTable":false},"Response":{"name":"Response","dataTable":false},"Percentage_Format":{"name":"Percentage_Format","dataTable":true,"order":2,"commas":true,"label":"Data Value"},"Graph_StartYear":{"label":"Graph_StartYear","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Graph_StartYear"},"Data_Type_DisplayOrder":{"label":"Data_Type_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type_DisplayOrder"},"Subcategory_Filter_DataValue":{"label":"Subcategory_Filter_DataValue","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DataValue"},"Subcategory_DisplayOrder":{"label":"Subcategory_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_DisplayOrder"},"Response_DisplayOrder":{"label":"Response_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_DisplayOrder"}},"dataFormat":{},"visualizationType":"table","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder","dataDescription":{"horizontal":false,"series":false}},"markup-include1738181292720":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1738181292720","type":"markup-include","contentEditor":{"inlineHTML":"<hr>\n<h5><strong>Notes</strong></h5>\n<ol class=\"ml-3\">\n<li>For Intervention Strategies, Adjusted, Consecutive, and Natural fluoridation statuses are subsets of the Fluoridated status.</li>\n<li>For Intervention Strategies, Non-fluoridated water systems are those with insufficient fluoride for oral health benefits. See <a href=\"https://www.cdc.gov/oralhealthdata/glossary/index.html\" target=\"_blank\">glossary</a>.</li>\n</ol>\n<br>\n<p>Water system populations are self-reported by the state or downloaded from EPA's federal State Drinking Water Information System (SDWIS). A control factor is applied to each drinking water population and may differ from information found in other drinking water databases.</p>\n<p>Populations on public water systems may exceed the county census population. Many water systems span multiple counties. WFRS collects population data for primary and secondary counties for each water system. However, due to difficulty in assigning population values to multiple counties, the primary county information may be over-estimated.</p>\n<p>Participation in sharing county level data is voluntary and state programs determine if data will be shown. Please contact your state oral health or drinking water program for additional information.</p>\n<p>CDC relies on the state oral health or drinking water programs to keep data in WFRS up to date. Please contact your state oral health or drinking water program with questions.</p>\n<br>\n<h5><strong>Measure Definitions</strong></h5>\n<br>\n<h5><strong>Data Source</strong></h5>\n<p><a href=\"https://www.cdc.gov/fluoridation/php/statistics/index.html\" target=\"_blank\">CDC Water Fluoridation Reporting System (WFRS)</a></p>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","version":"4.25.1","migrations":{"addColorMigration":true}}},"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020&$select=distinct%20Topic_Category&$where=Topic_Category=%22Intervention%20Strategies%22","valueSelector":"Topic_Category","textSelector":""},"tier":1},{"key":"Indicator","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020&$select=distinct%20Indicator,%20Indicator_Code&$order=Indicator","valueSelector":"Indicator_Code","textSelector":"Indicator"},"parents":["Topic"],"tier":2},{"key":"Year","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=2003&$select=distinct%20Year&$order=Year%20DESC&$where=STLT_Display%20is%20not%20null","valueSelector":"Year","textSelector":""},"parents":["Topic","Indicator"],"tier":2},{"key":"View By","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020&$select=distinct%20Data_Type,%20Data_Type_DisplayOrder&$order=Data_Type_DisplayOrder","valueSelector":"Data_Type","textSelector":""},"parents":["Topic","Indicator","Year"],"usedBy":[],"tier":1},{"key":"View By ","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$select=distinct%20Data_Type,%20Data_Type_DisplayOrder&$order=Data_Type_DisplayOrder","subgroupValueSelector":"","textSelector":"","valueSelector":"Data_Type"},"filterStyle":"multi-select","selectLimit":"5","parents":["Topic","Indicator","Year"],"usedBy":[6],"tier":2},{"key":"State","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$select=distinct%20State,%20State_DisplayOrder&$order=State_DisplayOrder&Datasource=%22WFRS%22&State!=%22United%20States%22","valueSelector":"State","textSelector":""},"usedBy":[6],"parents":["Year","View By","Topic","Indicator"],"tier":2}]},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1736962489640"}]},{"columns":[{"width":12,"widget":"markup-include1736962627796"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020"},{"columns":[{"width":12,"widget":"dashboardFilters1736962738217"}]},{"columns":[{"width":12,"widget":"map1736978602648"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=5000&Percentage%20!=%22%22"},{"columns":[{"width":12,"widget":"markup-include1737040830561"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20020"},{"columns":[{"width":12,"widget":"dashboardFilters1737040886134"}]},{"columns":[{"width":12,"widget":"chart1737040898933"},{"width":12,"widget":"table1737659200469"},{"width":12}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20004&$where=STLT_Display%20is%20not%20null&$order=State,STLT_Display,Subcategory_DisplayOrder","toggle":true},{"columns":[{"width":12,"widget":"markup-include1738181292720"}]}],"type":"dashboard","version":"4.25.1","migrations":{"addColorMigration":true}},{"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"State","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$select=distinct%20State,%20State_DisplayOrder&$order=State_DisplayOrder&Datasource=%22WFRS%22&State!=%22United%20States%22","valueSelector":"State","textSelector":""},"parents":[],"tier":1},{"key":"County","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&TopicId=%22WFR_CT%22&$select=distinct%20STLT_Display,%20FIPSCode&$order=FIPSCode&$Topic_Id=%22WFR_CT%22","valueSelector":"FIPSCode","textSelector":"STLT_Display"},"parents":["State"],"usedBy":[3],"tier":2},{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$select=distinct%20Topic_Category&$where=Topic_Category=%22Intervention%20Strategies%22","valueSelector":"Topic_Category","textSelector":""},"parents":["State","County"],"tier":2},{"key":"Indicator","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$select=distinct%20Indicator,%20Indicator_Code&$order=Indicator","valueSelector":"Indicator_Code","textSelector":"Indicator"},"parents":["State","County","Topic"],"tier":2},{"key":"Year","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$select=distinct%20Year&$order=Year%20DESC","valueSelector":"Year","textSelector":""},"parents":["State","County","Topic","Indicator"],"tier":2}]},"visualizations":{"dashboardFilters1736962845892":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1736962845892","type":"dashboardFilters","sharedFilterIndexes":[0,1,2,3,4],"visualizationType":"dashboardFilters","applyFiltersButtonText":"Run Report"},"markup-include1736965302907":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736965302907","type":"markup-include","contentEditor":{"inlineHTML":"\n<p class=\"float-right\">View Indicator Definitions: <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/adult-indicators.html\" target=\"_blank\" >Adult</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/child-indicators.html\" target=\"_blank\" >Child</a> | <a href=\"https://www.cdc.gov/oral-health-data-systems/about_oral_health_data/water-fluoridation-indicators.html\" target=\"_blank\" >Intervention Strategies</a></p>\n<br>\n<br>\n<h3>{{Indicator}}</h3>\n<h4><em>Topic: {{Topic}}</em></h4>","markupVariables":[{"columnName":"Topic_Category","conditions":[],"name":"Topic","tag":"{{Topic}}"},{"columnName":"Indicator","conditions":[],"name":"Indicator","tag":"{{Indicator}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"chart1736965342811":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"","showTitle":false,"showDownloadMediaButton":false,"theme":"theme-blue","animate":false,"fontSize":"medium","lineDatapointStyle":"hover","lineDatapointColor":"Same as Line","barHasBorder":"false","isLollipopChart":false,"lollipopShape":"circle","lollipopColorStyle":"two-tone","visualizationSubType":"regular","barStyle":"","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":false,"showSuppressedSymbol":true,"showZeroValueData":false,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":true,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":"125","gridLines":true,"enablePadding":false,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":false,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"5","axisPadding":0,"scalePadding":"","tickRotation":0,"anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"label":"Data Value","labelOffset":"0","labelsAboveGridlines":false},"boxplot":{"plots":[],"borders":"true","plotOutlierValues":false,"plotNonOutlierValues":true,"labels":{"q1":"Lower Quartile","q2":"q2","q3":"Upper Quartile","q4":"q4","minimum":"Minimum","maximum":"Maximum","mean":"Mean","median":"Median","sd":"Standard Deviation","iqr":"Interquartile Range","count":"Count","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds"}},"topAxis":{"hasLine":false},"isLegendValue":true,"barThickness":0.35,"barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":750},"xAxis":{"sortDates":false,"anchors":[],"type":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":"45","min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"Data_Type","axisBBox":61.67750930786133,"tickWidthMax":53},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":false},"orientation":"vertical","color":"pinkpurple","columns":{},"legend":{"hide":false,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"Data_Type","reverseLabelOrder":false,"description":"","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"PWS Fluoridation Status","lineMode":false,"verticalSorted":false,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":true},"position":"right"},"brush":{"height":45,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"colorblindsafe","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":true,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"1","onlyShowTopPrefixSuffix":false},"confidenceKeys":{},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Percentage","type":"Bar","axis":"Left","tooltip":true,"name":"Data Value"}],"tooltips":{"opacity":90,"singleSeries":true,"dateDisplayFormat":""},"forestPlot":{"startAt":0,"colors":{"line":"","shape":""},"lineOfNoEffect":{"show":true},"type":"","pooledResult":{"diamondHeight":5,"column":""},"estimateField":"","estimateRadius":"","shape":"square","rowHeight":20,"description":{"show":true,"text":"description","location":0},"result":{"show":true,"text":"result","location":100},"radius":{"min":2,"max":10,"scalingColumn":""},"regression":{"lower":0,"upper":0,"estimateField":0},"leftWidthOffset":0,"rightWidthOffset":0,"showZeroLine":false,"leftLabel":"","rightLabel":""},"area":{"isStacked":false},"sankey":{"title":{"defaultColor":"black"},"iterations":1,"rxValue":0.9,"overallSize":{"width":900,"height":700},"margin":{"margin_y":25,"margin_x":0},"nodeSize":{"nodeWidth":26,"nodeHeight":40},"nodePadding":55,"nodeFontColor":"black","nodeColor":{"default":"#ff8500","inactive":"#808080"},"linkColor":{"default":"#ffc900","inactive":"#D3D3D3"},"opacity":{"nodeOpacityDefault":1,"nodeOpacityInactive":0.1,"LinkOpacityDefault":1,"LinkOpacityInactive":0.1},"storyNodeFontColor":"#006778","storyNodeText":[],"nodeValueStyle":{"textBefore":"(","textAfter":")"},"data":[]},"filters":[],"openModal":true,"uid":"chart1736965342811","visualizationType":"Bar","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder","migrations":{"addColorMigration":true}},"table1736966659698":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1736966659698","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false},"columns":{"Data_Type":{"label":"Fluoridation Status","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type","order":1},"Percentage_Format":{"label":"Data Value","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage_Format","order":2},"95%_CI":{"label":"95%_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"95%_CI"},"Category":{"label":"Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category"},"Datasource":{"label":"Datasource","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Datasource"},"FIPSCode":{"label":"FIPSCode","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"FIPSCode"},"Footnotes":{"label":"Footnotes","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Footnotes"},"GeoLocation_Lat":{"label":"GeoLocation_Lat","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Lat"},"GeoLocation_Long":{"label":"GeoLocation_Long","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GeoLocation_Long"},"High_CI":{"label":"High_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"High_CI"},"Indicator":{"label":"Indicator","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator"},"Indicator_Code":{"label":"Indicator_Code","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Indicator_Code"},"Low_CI":{"label":"Low_CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Low_CI"},"Percentage":{"label":"Data Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage","order":null},"Response":{"label":"Response","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response"},"STLT_Display":{"label":"STLT_Display","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"STLT_Display"},"State":{"label":"State","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State"},"State_Abrr":{"label":"State_Abrr","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Abrr"},"Subcategory":{"label":"Subcategory","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory"},"Subcategory_Filter":{"label":"Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter"},"TopicId":{"label":"TopicId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"TopicId"},"Topic_Category":{"label":"Topic_Category","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Topic_Category"},"Year":{"label":"Year","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year"},"Year_Value":{"label":"Year_Value","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Value"},"n":{"label":"n","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"n"},"Category_DisplayOrder":{"label":"Category_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category_DisplayOrder"},"County_DisplayOrder":{"label":"County_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"County_DisplayOrder"},"Createdon":{"label":"Createdon","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Createdon"},"Data_Value_Unit":{"label":"Data_Value_Unit","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value_Unit"},"RowId":{"label":"RowId","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"RowId"},"State_DisplayOrder":{"label":"State_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_DisplayOrder"},"State_Subcategory_Filter":{"label":"State_Subcategory_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"State_Subcategory_Filter"},"Subcategory_Filter_DisplayOrder":{"label":"Subcategory_Filter_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DisplayOrder"},"Year_Filter":{"label":"Year_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Year_Filter"},"Graph_StartYear":{"label":"Graph_StartYear","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Graph_StartYear"},"Data_Type_DisplayOrder":{"label":"Data_Type_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Type_DisplayOrder"},"Subcategory_Filter_DataValue":{"label":"Subcategory_Filter_DataValue","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_Filter_DataValue"},"Subcategory_DisplayOrder":{"label":"Subcategory_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Subcategory_DisplayOrder"},"Response_DisplayOrder":{"label":"Response_DisplayOrder","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_DisplayOrder"}},"dataFormat":{},"visualizationType":"table","dataDescription":{"horizontal":false,"series":false},"general":{"showDownloadButton":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder"},"markup-include1736976396944":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1736976396944","type":"markup-include","contentEditor":{"inlineHTML":"<hr>\n<h5><strong>Notes</strong></h5>\n<ol class=\"ml-3\">\n<li>For Intervention Strategies, Adjusted, Consecutive, and Natural fluoridation statuses are subsets of the Fluoridated status.</li>\n<li>For Intervention Strategies, Non-fluoridated water systems are those with insufficient fluoride for oral health benefits. See <a href=\"https://www.cdc.gov/oralhealthdata/glossary/index.html\" target=\"_blank\">glossary</a>.</li>\n</ol>\n<br>\n<p>Water system populations are self-reported by the state or downloaded from EPA's federal State Drinking Water Information System (SDWIS). A control factor is applied to each drinking water population and may differ from information found in other drinking water databases.</p>\n<p>Populations on public water systems may exceed the county census population. Many water systems span multiple counties. WFRS collects population data for primary and secondary counties for each water system. However, due to difficulty in assigning population values to multiple counties, the primary county information may be over-estimated.</p>\n<p>Participation in sharing county level data is voluntary and state programs determine if data will be shown. Please contact your state oral health or drinking water program for additional information.</p>\n<p>CDC relies on the state oral health or drinking water programs to keep data in WFRS up to date. Please contact your state oral health or drinking water program with questions.</p>\n<br>\n<h5><strong>Measure Definitions</strong></h5>\n<br>\n<h5><strong>Data Source</strong></h5>\n<p><a href=\"https://www.cdc.gov/fluoridation/php/statistics/index.html\">CDC Water Fluoridation Reporting System (WFRS)</a></p>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}}},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1736962845892"}]},{"columns":[{"width":12,"widget":"markup-include1736965302907"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder"},{"columns":[{"width":12,"widget":"chart1736965342811"},{"width":12,"widget":"table1736966659698"},{"width":12}],"toggle":true,"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder"},{"columns":[{"width":12,"widget":"markup-include1736976396944"}],"dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=doh_nohss_cove_state_interventionstrategies&$limit=20030&$order=Data_Type_DisplayOrder"}],"label":"Single County","type":"dashboard","version":"4.25.1","migrations":{"addColorMigration":true}}],"migrations":{"addColorMigration":true}}
@@ -0,0 +1,116 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "title": "Custom Order Filter - New Values Auto-Append Demo",
5
+ "sharedFilters": [
6
+ {
7
+ "key": "Location",
8
+ "columnName": "Location",
9
+ "showDropdown": true,
10
+ "type": "datafilter",
11
+ "order": "cust",
12
+ "orderedValues": [
13
+ "California",
14
+ "Texas",
15
+ "Florida"
16
+ ],
17
+ "usedBy": [
18
+ "data-bite-demo",
19
+ "chart-demo"
20
+ ],
21
+ "tier": 1
22
+ }
23
+ ]
24
+ },
25
+ "datasets": {
26
+ "custom-order-demo-data.csv": {
27
+ "dataUrl": "http://localhost:6006/custom-order-demo-data.csv"
28
+ }
29
+ },
30
+ "rows": [
31
+ {
32
+ "columns": [
33
+ {
34
+ "width": 12,
35
+ "widget": "legacySharedFilters"
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "columns": [
41
+ {
42
+ "width": 6,
43
+ "widget": "data-bite-demo"
44
+ },
45
+ {
46
+ "width": 6,
47
+ "widget": "chart-demo"
48
+ }
49
+ ]
50
+ }
51
+ ],
52
+ "visualizations": {
53
+ "data-bite-demo": {
54
+ "type": "data-bite",
55
+ "dataKey": "custom-order-demo-data.csv",
56
+ "dataFunction": "Sum",
57
+ "dataColumn": "Amount",
58
+ "bitePosition": "Left",
59
+ "biteFontSize": 36,
60
+ "fontSize": "large",
61
+ "biteBody": "<h3>Total Amount for Selected Location</h3><p><strong>Custom Order Demo:</strong> The filter has custom order: <em>California, Texas, Florida</em>. But the CSV data includes <strong>New York</strong> and <strong>Illinois</strong> which should auto-append to the end of the dropdown.</p><p>Select different locations from the dropdown above to see the total amount update.</p>",
62
+ "dataFormat": {
63
+ "roundToPlace": 0,
64
+ "commas": true,
65
+ "prefix": "$",
66
+ "suffix": ""
67
+ },
68
+ "biteStyle": "graphic",
69
+ "theme": "theme-blue",
70
+ "shadow": true,
71
+ "uid": "data-bite-demo",
72
+ "visualizationType": "data-bite"
73
+ },
74
+ "chart-demo": {
75
+ "type": "chart",
76
+ "title": "Amount by Year",
77
+ "theme": "theme-blue",
78
+ "fontSize": "medium",
79
+ "height": "250",
80
+ "yAxis": {
81
+ "label": "Amount",
82
+ "gridLines": true
83
+ },
84
+ "xAxis": {
85
+ "dataKey": "Year",
86
+ "label": "Year"
87
+ },
88
+ "table": {
89
+ "show": true,
90
+ "label": "Data Table"
91
+ },
92
+ "legend": {
93
+ "hide": true
94
+ },
95
+ "visualizationType": "Bar",
96
+ "series": [
97
+ {
98
+ "dataKey": "Amount",
99
+ "type": "Bar"
100
+ }
101
+ ],
102
+ "dataKey": "custom-order-demo-data.csv",
103
+ "uid": "chart-demo"
104
+ },
105
+ "legacySharedFilters": {
106
+ "type": "dashboardFilters",
107
+ "visualizationType": "dashboardFilters",
108
+ "sharedFilterIndexes": [
109
+ 0
110
+ ],
111
+ "filterBehavior": "Filter Change",
112
+ "uid": "legacySharedFilters"
113
+ }
114
+ },
115
+ "type": "dashboard"
116
+ }
@@ -1,5 +1,5 @@
1
1
  import React, { useState, useEffect } from 'react'
2
- import Icon from '../../../core/components/ui/Icon'
2
+ import Icon from '@cdc/core/components/ui/Icon'
3
3
  import { APP_FONT_SIZE } from '@cdc/core/helpers/constants'
4
4
 
5
5
  type CollapsableVizRow = {