@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
+ {"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"Class","showDropdown":true,"type":"urlfilter","filterBy":"","tier":1,"apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Class,Class_DisplayOrder&$order=Class_DisplayOrder","valueSelector":"Class","textSelector":""},"usedBy":[]},{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Topic,Topic_DisplayOrder&$order=Topic_DisplayOrder","valueSelector":"Topic","textSelector":""},"tier":1,"parents":["Class"]},{"key":"Year","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Year&$order=Year%20Desc","valueSelector":"Year","textSelector":""},"parents":["Class","Topic"],"tier":2},{"key":"Question","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Question,Question_Code&$order=Question_Code","valueSelector":"Question_Code","textSelector":"Question"},"parents":["Class","Topic","Year"],"tier":1,"usedBy":[]},{"key":"View By","showDropdown":true,"type":"urlfilter","filterBy":"","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Category,%20Category_DisplayOrder&$order=Category_DisplayOrder","valueSelector":"Category","textSelector":""},"tier":2,"parents":["Class","Topic","Year","Question"],"usedBy":["map1725917896547","chart1725918024864","table1725918028606","footnotes1734535863833"],"orderedValues":[]},{"key":"Data Type","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Data_Type&$order=Data_Type%20Desc","valueSelector":"Data_Type","textSelector":""},"parents":["Class","Topic","Year","Question","View By"],"tier":2},{"key":"Dataset","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=distinct%20Dataset&$order=Dataset%20Desc","valueSelector":"Dataset","textSelector":""},"parents":["Class","Topic","Year","Question","View By","Data Type"],"tier":2}]},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1725917968954"}],"uuid":1725917970561,"dataDescription":{},"dataKey":""},{"columns":[{"width":12,"widget":"markup-include1727985995619"}],"uuid":1727986044905},{"columns":[{"width":12,"widget":"markup-include1738165566534"}],"uuid":1738165560704},{"columns":[{"width":12,"widget":"dashboardFilters1725972557434"}],"uuid":1738165560704},{"columns":[{"width":12,"widget":"map1725917896547"},{"width":12,"widget":"chart1725918024864"},{"width":12,"widget":"table1725918028606"}],"toggle":true,"uuid":1738165558702,"footnotesId":"footnotes1734535863833"},{"columns":[{"width":12,"widget":"markup-include1731457764699"}],"uuid":1738165555862},{"columns":[{"width":12,"widget":"markup-include1733869550808"}],"uuid":1738165553631},{"columns":[{"width":12,"widget":"markup-include1733869622293"}],"uuid":1738165551347},{"columns":[{"width":12,"widget":"markup-include1733869573450"}],"uuid":1738165550028}],"visualizations":{"map1725917896547":{"annotations":[],"general":{"geoType":"us","noStateFoundMessage":"Map Unavailable","annotationDropdownText":"Annotations","geoBorderColor":"darkGray","headerColor":"theme-blue","title":"Explore by Topic Map","showTitle":false,"showSidebar":true,"showDownloadButton":true,"showDownloadMediaButton":false,"displayAsHex":false,"displayStateLabels":true,"territoriesAlwaysShow":false,"language":"en","geoLabelOverride":"","hasRegions":false,"fullBorder":false,"type":"data","convertFipsCodes":true,"palette":{"isReversed":false},"allowMapZoom":true,"hideGeoColumnInTooltip":true,"hidePrimaryColumnInTooltip":false,"statePicked":{"fipsCode":"01","stateName":"Alabama"},"expandDataTable":false,"subtext":"<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>","footnotes":"<p>The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria.</p>\n\n<p class=\"mt-2\">MMSA data belonging to territories are not displayed on the map. Please visit the Chart or Table view for territories MMSA data.</p>","showDownloadImgButton":true,"navigationTarget":"_self"},"type":"map","color":"yelloworangebrown","columns":{"geo":{"name":"State","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":false,"tooltip":true,"prefix":"","suffix":"%","name":"Percentage","label":"Percentage","roundToPlace":"1"},"navigate":{"name":""},"latitude":{"name":"GeoLocation_Lat"},"longitude":{"name":"GeoLocation_Long"},"additionalColumn1":{"label":"95% CI","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"95%_CI","tooltip":true},"additionalColumn2":{"label":"n","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"n","useCommas":true,"tooltip":true}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":false,"singleRow":true,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"equalnumber","numberOfItems":4,"position":"bottom","title":"Percentage","style":"boxes","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":false,"categoryValuesOrder":["40.7000-48.3000"]},"filters":[{"order":"column","label":"View By Subcategory","columnName":"Subcategory_Filter","filterStyle":"dropdown","id":1736207087258,"orderColumn":"Subcategory_DisplayOrder"},{"filterStyle":"dropdown","id":1736440209639,"showDropdown":true,"columnName":"Response_Filter","label":"Response","parents":[1736207087258],"order":"column","orderColumn":"Response_DisplayOrder"}],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":false,"showFullGeoNameInCSV":false,"forceDisplay":false,"download":true,"indexLabel":"","showDownloadLinkBelow":false},"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":"map1725917896547","dataDescription":{"horizontal":false,"series":false},"dataKey":"Explore by Topic Map","version":"4.25.1","migrations":{"addColorMigration":true},"editor":{"activeFilterValueForDescription":[0,0]}},"dashboardFilters1725917968954":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1725917968954","type":"dashboardFilters","sharedFilterIndexes":[0,1,2,3],"visualizationType":"dashboardFilters","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic","dataDescription":{"horizontal":false,"series":false},"autoLoad":false,"applyFiltersButtonText":"View Results"},"chart1725918024864":{"annotations":[],"type":"chart","debugSvg":false,"chartMessage":{"noData":"No Data Available"},"title":"Subcategories by State Bar Chart","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":"flat","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":true,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":true,"showSuppressedSymbol":true,"showZeroValueData":true,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":false,"size":50,"gridLines":false,"enablePadding":true,"min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","rightHideAxis":true,"rightAxisSize":0,"rightLabel":"","rightLabelOffsetSize":0,"rightAxisLabelColor":"#333","rightAxisTickLabelColor":"#333","rightAxisTickColor":"#333","numTicks":"","axisPadding":0,"scalePadding":10,"tickRotation":0,"anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"labelPlacement":"Below Bar","label":"Percentage"},"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","total":"Total","outliers":"Outliers","values":"Values","lowerBounds":"Lower Bounds","upperBounds":"Upper Bounds","count":"Count"},"firstQuartilePercentage":25,"thirdQuartilePercentage":75,"boxWidthPercentage":40,"legend":{"showHowToReadText":false,"howToReadText":""}},"topAxis":{"hasLine":false},"isLegendValue":true,"barThickness":0.35,"barHeight":25,"barSpace":15,"heights":{"vertical":300,"horizontal":12303.199999999999},"xAxis":{"sortDates":false,"anchors":[],"type":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":"80","tickRotation":"30","min":"0","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":"30","padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"State","axisBBox":50.62351989746094,"tickWidthMax":48,"label":"State or MMSAs","manual":false},"table":{"label":"Data Table","expanded":true,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":false,"showDownloadLinkBelow":false,"indexLabel":"","download":true,"showVertical":false,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":true},"orientation":"horizontal","color":"pinkpurple","columns":{"95%_CI":{"label":"95% CI","dataTable":false,"tooltips":true,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"95%_CI","series":""},"n":{"label":"n","dataTable":false,"tooltips":true,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","series":""}},"legend":{"hide":false,"behavior":"highlight","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"Subcategory","lineMode":false,"verticalSorted":true,"highlightOnHover":false,"hideSuppressedLabels":false,"hideSuppressionLink":false,"seriesHighlight":[],"style":"circles","subStyle":"linear blocks","shape":"circle","tickRotation":"","hideBorder":{"side":false,"topBottom":false},"position":"right"},"brush":{"height":25,"active":false},"exclusions":{"active":false,"keys":[]},"palette":"qualitative-bold","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":false,"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":true,"dynamicCategory":"Series","confidenceIntervals":[{"low":"Low_CI","high":"High_CI","showInTooltip":true}]}],"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":1732225646634,"showDropdown":true,"columnName":"Subcategory_Filter","label":"View By Subcategory","order":"column","orderColumn":"Subcategory_DisplayOrder","parents":[]},{"filterStyle":"dropdown","id":1736439759754,"showDropdown":true,"columnName":"Response_Filter","label":"Response","parents":[1732225646634,1736439444438],"order":"column","orderColumn":"Response_DisplayOrder"}],"openModal":true,"uid":"chart1725918024864","visualizationType":"Bar","dataDescription":{"horizontal":false,"series":false},"dataKey":"Explore by Topic Chart and Table","version":"4.25.1","dynamicMarginTop":0,"description":"<strong>Data Source:</strong> <a href=\"/brfss/\" target=\"_blank\">Behavioral Risk Factor Surveillance System (BRFSS)</a>","footnotes":"","migrations":{"addColorMigration":true}},"table1725918028606":{"filters":[{"filterStyle":"dropdown","id":1732226296241,"showDropdown":true,"columnName":"Subcategory_Filter","label":"View By Subcategory","order":"column","orderColumn":"Subcategory_DisplayOrder"},{"filterStyle":"dropdown","id":1736440617623,"showDropdown":true,"columnName":"Response_Filter","label":"Response","order":"column","parents":[1732226296241,1736440597068],"orderColumn":"Response_DisplayOrder"}],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1725918028606","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"showDownloadLinkBelow":false,"groupBy":"State","pivot":{"columnName":"Category_Pivot_Display","valueColumns":["Series"]},"limitHeight":true,"height":"1252"},"columns":{"Category":{"name":"Category","dataTable":false,"label":"View By","order":1},"Class":{"name":"Class","dataTable":false},"DataSource":{"name":"DataSource","dataTable":false},"Data_Type":{"name":"Data_Type","dataTable":false},"Dataset":{"name":"Dataset","dataTable":false},"Footnotes":{"name":"Footnotes","dataTable":false},"GeoLocation_Lat":{"name":"GeoLocation_Lat","dataTable":false},"GeoLocation_Long":{"name":"GeoLocation_Long","dataTable":false},"High_CI":{"name":"High_CI","dataTable":false},"Low_CI":{"name":"Low_CI","dataTable":false},"Question":{"name":"Question","dataTable":false},"Response":{"name":"Response","dataTable":false},"State_Abbr":{"name":"State_Abbr","dataTable":false},"Subcategory":{"name":"Subcategory","dataTable":false},"Subcategory_Filter":{"name":"Subcategory_Filter","dataTable":false},"Topic":{"name":"Topic","dataTable":false},"createdon":{"name":"createdon","dataTable":true},"Year":{"name":"Year","dataTable":false},"n":{"label":"n","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":true,"showInViz":false,"forestPlotStartingPoint":0,"name":"n","order":4},"Percentage":{"label":"Percentage","dataTable":false,"tooltips":false,"prefix":"","suffix":"%","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Percentage","order":3},"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":6},"Category_DisplayOrder":{"name":"Category_DisplayOrder","dataTable":false},"LocationCategory":{"name":"LocationCategory","dataTable":false},"Subcategory_DisplayOrder":{"name":"Subcategory_DisplayOrder","dataTable":false},"Response_Filter":{"label":"Response_Filter","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Response_Filter"},"Data_Visualization":{"label":"Data_Visualization","dataTable":false,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Visualization"},"Location_DisplayOrder":{"name":"Location_DisplayOrder","dataTable":false},"Question_DisplayOrder":{"name":"Question_DisplayOrder","dataTable":false},"Response_DisplayOrder":{"name":"Response_DisplayOrder","dataTable":false},"Createdon":{"name":"Createdon","dataTable":false},"Class_DisplayOrder":{"name":"Class_DisplayOrder","dataTable":false},"Topic_DisplayOrder":{"name":"Topic_DisplayOrder","dataTable":false},"Footnotes_Symbol":{"name":"Footnotes_Symbol","dataTable":false},"Category_Pivot_Display":{"label":"","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Category_Pivot_Display","order":1},"Series":{"label":"","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Series","order":2},"Percentage_Format":{"name":"Percentage_Format","dataTable":false},"Question_Code":{"name":"Question_Code","dataTable":false},"State_DisplayOrder":{"name":"State_DisplayOrder","dataTable":false},"Data_Value_Format":{"label":"Percentage (%)","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"1","commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value_Format","order":5},"Series_DisplayOrder":{"name":"Series_DisplayOrder","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataDescription":{"series":false,"horizontal":false},"dataKey":"Explore by Topic Chart and Table","general":{"showDownloadButton":false}},"dashboardFilters1725972557434":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1725972557434","type":"dashboardFilters","sharedFilterIndexes":[4,5,6],"visualizationType":"dashboardFilters","autoLoad":true},"markup-include1727985995619":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1727985995619","type":"markup-include","contentEditor":{"inlineHTML":"<h2>{{Question}}</h2><h3>{{Class}}: {{Topic}}</h3>","markupVariables":[{"columnName":"Question","conditions":[],"name":"Question","tag":"{{Question}}"},{"columnName":"Class","conditions":[],"name":"Class","tag":"{{Class}}"},{"columnName":"Topic","conditions":[],"name":"Topic","tag":"{{Topic}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true,"allowHideSection":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","version":"4.25.1","dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic","migrations":{"addColorMigration":true}},"markup-include1731457764699":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1731457764699","type":"markup-include","contentEditor":{"inlineHTML":"<h4>Calculated Variables</h4><p>Calculated variables are variables that are calculated from one or more BRFSS questions. Refer to <a href='https://www.cdc.gov/brfss/annual_data/2023/pdf/2023-calculated-variables-version4-508.pdf' target='_blank'>Calculated Variable Data File</a> for further details.</p>","markupVariables":[],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true,"allowHideSection":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"markup-include1733869550808":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1733869550808","type":"markup-include","contentEditor":{"inlineHTML":"<h4>Notes</h4><p>Use caution in interpreting cell sizes less than 50.</p><p>If you see that a question is not available for a particular year, it is because the question was dropped or changed.</p><p>Check the category of interest for that year to find similar items.</p><p>Denominator includes all respondents except those with missing, don't know, and refused answers.</p>","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","dataDescription":{},"dataKey":"","version":"4.25.1","migrations":{"addColorMigration":true}},"markup-include1733869573450":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1733869573450","type":"markup-include","contentEditor":{"inlineHTML":"<h4>Suggested Citation</h4><p>Centers for Disease Control and Prevention, National Center for Chronic Disease Prevention and Health Promotion, Division of Population Health. BRFSS Prevalence & Trends Data [online]. 2025. [accessed {{AccessedDate}}]. URL: <a href='https://www.cdc.gov/brfss/brfssprevalence/' target='_blank'>https://www.cdc.gov/brfss/brfssprevalence/.</a></p>","markupVariables":[{"columnName":"getdate()","conditions":[],"name":"AccessedDate","tag":"{{AccessedDate}}"}],"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","dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()","version":"4.25.1","migrations":{"addColorMigration":true}},"markup-include1733869622293":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1733869622293","type":"markup-include","contentEditor":{"inlineHTML":"<h4>Measure Definitions</h4><p><strong>% =</strong> Percent</p><p><strong>CI =</strong> 95% Confidence Interval</p><p><strong>n =</strong> “Sample Size”. Translates to the number of adult respondents who answered this question, or were assigned to this category based on question responses for a calculated variable, or the number of states included for a median.</p><p><strong>N/A =</strong> Translates to no data available for a record.</p>","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}},"footnotes1734535863833":{"uid":"footnotes1734535863833","type":"footnotes","visualizationType":"footnotes","dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27","dynamicFootnotes":{"textColumn":"Footnotes","symbolColumn":"Footnotes_Symbol"}},"markup-include1738165566534":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1738165566534","type":"markup-include","contentEditor":{"inlineHTML":"<h3>{{Year}}</h3>","markupVariables":[{"columnName":"Year","conditions":[],"name":"Year","tag":"{{Year}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true,"allowHideSection":true},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":true,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataDescription":{"horizontal":false,"series":false},"dataKey":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic","version":"4.25.1","migrations":{"addColorMigration":true}}},"table":{"label":"Data Table","show":false,"showDownloadUrl":false,"showVertical":true},"datasets":{"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic":{"dataFileSize":1272430,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_location_nationwide_mmsa&$limit=2000&$select=getdate()":{"dataFileSize":92002,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=getdate()"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'":{"dataFileSize":1286146,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'":{"dataFileSize":1272966,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=subcategory_filter like 'All%'&Dataset='Nationwide'"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22GlobalNote%22":{"dataFileSize":515,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22GlobalNote%22"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&FootnoteType=%22MeasureDefinitions%22":{"dataFileSize":480,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic_footnotes&$limit=2000&$select=DISTINCT%20FootnoteSymbol,FootnoteText&FootnoteType=%22MeasureDefinitions%22"},"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes&$where=subcategory_filter%20like%20%27All%%27":{"dataFileSize":1225,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes,Footnotes_Symbol&$where=subcategory_filter%20like%20%27All%%27","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$select=DISTINCT%20Footnotes,Footnotes_Symbol&$where=subcategory_filter%20like%20%27All%%27"},"Explore by Topic Chart and Table":{"dataFileSize":2192679,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=Data_Visualization%20in%20(%22Chart_Table%22,%22Map_Chart_Table%22)&$order=State_DisplayOrder,Series_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":true,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2000&$where=Data_Visualization%20in%20(%22Chart_Table%22,%22Map_Chart_Table%22)&$order=State_DisplayOrder,Series_DisplayOrder"},"Explore by Topic Map":{"dataFileSize":1698150,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2001&$where=Data_Visualization%20in%20(%22Map_Only%22,%22Map_Chart_Table%22)&$order=Location_DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=brfss_prevalence_cove_explore_by_topic&$limit=2001&$where=Data_Visualization%20in%20(%22Map_Only%22,%22Map_Chart_Table%22)&$order=Location_DisplayOrder"}},"type":"dashboard","version":"4.25.1","uuid":1738165548489,"label":"New Dashboard 1","migrations":{"addColorMigration":true}}
@@ -0,0 +1 @@
1
+ {"table":{"label":"Data Table","show":false,"showDownloadUrl":false,"showVertical":true},"datasets":{"Dashboard 1000":{"dataFileSize":298965,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=1000","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=1000"},"Dashboard 1000 Cigarette Tax":{"dataFileSize":85444,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=6000&$select=%20TopicDesc%2c%20YearQuarter%2c%20LocationAbbr%2c%20Location%2c%20Data_Value%2c%20DisplayOrder&$where=TopicDesc%20LIKE%20%27Cigarette%25%27&$order=Location%2cDisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":true,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=6000&$select=%20TopicDesc%2c%20YearQuarter%2c%20LocationAbbr%2c%20Location%2c%20Data_Value%2c%20DisplayOrder&$where=TopicDesc%20LIKE%20%27Cigarette%25%27&$order=Location%2cDisplayOrder"},"Dashboard 1001":{"dataFileSize":298965,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=1001","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=1001"},"Dashboard 1001 Smokefree":{"dataFileSize":14102,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&TopicDesc=%22Smokefree%20Indoor%20Air%22&$limit=1001&$order=DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&TopicDesc=%22Smokefree%20Indoor%20Air%22&$limit=1001&$order=DisplayOrder"},"Dashboard 1001 Legislation":{"dataFileSize":14949,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&TopicDesc=%22Legislation%20-%20Preemption%22&$limit=1001&$order=DisplayOrder","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&TopicDesc=%22Legislation%20-%20Preemption%22&$limit=1001&$order=DisplayOrder"},"SbL $datakey=statesystem_legi&$limit=2010":{"dataFileSize":772031,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2010","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2010"},"SbL $datakey=statesystem_legi&$limit=2011":{"dataFileSize":772031,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2011","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2011"},"SbTP $datakey=statesystem_legi&$limit=2020":{"dataFileSize":831366,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2020","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2020"},"SbTP $datakey=statesystem_legi&$limit=2021":{"dataFileSize":831366,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2021","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2021"},"SbAL $datakey=statesystem_legi&$limit=2030":{"dataFileSize":831821,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2030","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2030"},"SbAL $datakey=statesystem_legi&$limit=2031":{"dataFileSize":831821,"dataFileName":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2031","dataFileSourceType":"url","dataFileFormat":"JSON","preview":false,"dataUrl":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2031"}},"isResponsiveTicks":false,"type":"dashboard","barThickness":"0.37","xAxis":{"type":"categorical","size":75,"maxTickRotation":45,"labelOffset":0},"version":"4.25.1","multiDashboards":[{"label":"Dashboard","visualizations":{"markup-include1739914942545":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739914942545","type":"markup-include","contentEditor":{"inlineHTML":"<header class=\"cove-component__header component__header theme-blue mb-0\"><h2>Cigarette Tax ($ per pack)</h2></header>\n</br>Select from list below to display the excise tax rate on a pack of cigarettes by state or territory.","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}},"dashboardFilters1737066916761":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1737066916761","type":"dashboardFilters","sharedFilterIndexes":[0],"visualizationType":"dashboardFilters","autoLoad":true},"chart1737067831696":{"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":"flat","roundingStyle":"standard","tipRounding":"top","isResponsiveTicks":false,"general":{"annotationDropdownText":"Annotations","showDownloadButton":false,"showMissingDataLabel":true,"showSuppressedSymbol":true,"showZeroValueData":true,"hideNullValue":true},"padding":{"left":5,"right":5},"preliminaryData":[],"yAxis":{"hideAxis":false,"displayNumbersOnBar":false,"hideLabel":false,"hideTicks":true,"size":"75","gridLines":false,"enablePadding":false,"min":"0","max":"7","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":"0","anchors":[],"shoMissingDataLabel":true,"showMissingDataLine":true,"categories":[],"label":"$ per pack"},"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":"categorical","showTargetLabel":true,"targetLabel":"Target","hideAxis":false,"hideLabel":false,"hideTicks":false,"size":75,"tickRotation":"15","min":"","max":"","labelColor":"#333","tickLabelColor":"#333","tickColor":"#333","numTicks":"","labelOffset":0,"axisPadding":200,"target":0,"maxTickRotation":0,"padding":5,"showYearsOnce":false,"sortByRecentDate":false,"dataKey":"YearQuarter","axisBBox":78.91014099121094,"tickWidthMax":68,"label":"Time Period"},"table":{"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":false,"showDownloadLinkBelow":true,"indexLabel":"","download":true,"showVertical":true,"dateDisplayFormat":"","showMissingDataLabel":true,"showSuppressedSymbol":true,"show":false,"showDownloadImgButton":true},"orientation":"vertical","color":"pinkpurple","columns":{},"legend":{"hide":true,"behavior":"isolate","axisAlign":true,"singleRow":true,"colorCode":"","reverseLabelOrder":false,"description":"","dynamicLegend":false,"dynamicLegendDefaultText":"Show All","dynamicLegendItemLimit":5,"dynamicLegendItemLimitMessage":"Dynamic Legend Item Limit Hit.","dynamicLegendChartMessage":"Select Options from the Legend","label":"","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":"qualitative-bold","isPaletteReversed":false,"twoColor":{"palette":"monochrome-1","isPaletteReversed":false},"labels":false,"dataFormat":{"commas":false,"prefix":"","suffix":"","abbreviated":false,"bottomSuffix":"","bottomPrefix":"","bottomAbbreviated":false,"roundTo":"2"},"confidenceKeys":{},"visual":{"border":true,"accent":true,"background":true,"verticalHoverLine":false,"horizontalHoverLine":false,"lineDatapointSymbol":"none","maximumShapeAmount":7},"useLogScale":false,"filterBehavior":"Filter Change","highlightedBarValues":[],"series":[{"dataKey":"Data_Value","type":"Line","axis":"Left","tooltip":true,"name":"Cigarette Tax ($ per pack)"}],"tooltips":{"opacity":90,"singleSeries":false,"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":"chart1737067831696","visualizationType":"Line","dataKey":"Dashboard 1000 Cigarette Tax","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","dynamicMarginTop":0,"migrations":{"addColorMigration":true},"allowLineToBarGraph":true},"table1734732581749":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1734732581749","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":false,"collapsible":true},"columns":{"YearQuarter":{"label":"Time Period","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"YearQuarter","order":1},"Data_Value":{"label":"Cigarette Tax ($ per pack)","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":"3","commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Data_Value"},"100SmokefreeInOneLocation":{"name":"100SmokefreeInOneLocation","dataTable":false},"100SmokefreeInThreeLocations":{"name":"100SmokefreeInThreeLocations","dataTable":false},"100SmokefreeInTwoLocations":{"name":"100SmokefreeInTwoLocations","dataTable":false},"DisplayOrder":{"name":"DisplayOrder","dataTable":false},"Label_Value":{"name":"Label_Value","dataTable":false},"Location":{"name":"Location","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"NoLawDesignatedAreasOrSeparateVentilationLaw":{"name":"NoLawDesignatedAreasOrSeparateVentilationLaw","dataTable":false},"NoPreemption":{"name":"NoPreemption","dataTable":false},"PreemptionFoOnePolicy":{"name":"PreemptionFoOnePolicy","dataTable":false},"PreemptionForThreePolicies":{"name":"PreemptionForThreePolicies","dataTable":false},"PreemptionForTwoPolicies":{"name":"PreemptionForTwoPolicies","dataTable":false},"PreemptionSummaryCount":{"name":"PreemptionSummaryCount","dataTable":false},"Restriction":{"name":"Restriction","dataTable":false},"RestrictionCount":{"name":"RestrictionCount","dataTable":false},"TopicDesc":{"name":"TopicDesc","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataKey":"Dashboard 1000 Cigarette Tax","dataDescription":{"horizontal":false,"series":false},"general":{"showDownloadButton":false}},"dashboardFilters1732051920923":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1732051920923","type":"dashboardFilters","sharedFilterIndexes":[1],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"autoLoad":true},"markup-include1739915383605":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739915383605","type":"markup-include","contentEditor":{"inlineHTML":"<header class=\"cove-component__header component__header theme-blue mb-0\"><h2>Smokefree Indoor Air Laws for Cigarettes and other Tobacco Products, {{YearQuarter1}}</h2></header></br>\nThe map below displays states and territories that have 100% smokefree indoor air laws for bars, restaurants, and worksites.","markupVariables":[{"columnName":"YearQuarter","conditions":[],"name":"YearQuarter1","tag":"{{YearQuarter1}}"}],"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},"dataDescription":{"horizontal":false,"series":false},"dataKey":"Dashboard 1001"},"map1732051228260":{"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":true,"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":true,"navigationTarget":"_self"},"type":"map","color":"sequential-blue-2(MPX)","columns":{"geo":{"name":"LocationAbbr","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":true,"tooltip":true,"prefix":"","suffix":"","name":"Restriction","label":"","roundToPlace":0},"navigate":{"name":""},"latitude":{"name":""},"longitude":{"name":""},"additionalColumn1":{"label":" Worksites","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"Worksites","tooltip":true},"additionalColumn2":{"label":"Restaurants","dataTable":false,"tooltips":false,"prefix":"","suffix":"","tooltip":true,"name":"Restaurants"},"additionalColumn3":{"label":"Bars","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"Bars","tooltip":true}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":false,"singleRow":false,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"category","numberOfItems":3,"position":"bottom","title":"","style":"circles","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":false,"categoryValuesOrder":["No Law, designated areas, or separate ventilation Law","100 % smokefree in one location","100 % smokefree in two locations","100 % smokefree in three locations"]},"filters":[],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":false,"showFullGeoNameInCSV":false,"forceDisplay":false,"download":true,"indexLabel":"","sharedFilterColumns":["YearQuarter"]},"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":"map1732051228260","dataDescription":{"series":false,"horizontal":false},"dataKey":"Dashboard 1001 Smokefree","version":"4.25.1","migrations":{"addColorMigration":true}},"table1732735270942":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1732735270942","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":false,"collapsible":true,"showDownloadLinkBelow":false,"limitHeight":true},"columns":{"Location":{"label":"State","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Location","order":1},"Data_Value":{"name":"Data_Value","dataTable":false},"DisplayOrder":{"name":"DisplayOrder","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"TopicDesc":{"name":"TopicDesc","dataTable":false},"YearQuarter":{"name":"YearQuarter","dataTable":false},"Restriction":{"label":"Restriction","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Restriction","order":2},"Bars":{"label":"Bars","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Bars","order":5},"Worksites":{"label":"Worksites","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Worksites","order":3},"Restaurants":{"label":"Restaurants","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Restaurants","order":4}},"dataFormat":{},"visualizationType":"table","dataKey":"Dashboard 1001 Smokefree","dataDescription":{"series":false,"horizontal":false},"general":{"showDownloadButton":false}},"markup-include1739915505122":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739915505122","type":"markup-include","contentEditor":{"inlineHTML":"<header class=\"cove-component__header component__header theme-blue mb-0\"><h2>Preemption of Local Tobacco Control Ordinances for Cigarettes and other Tobacco Products, {{YearQuarter2}}</h2></header></br>\nThe map below displays states and territories that preempt local laws governing retail licensure, smokefree indoor air, or youth access.","markupVariables":[{"columnName":"YearQuarter","conditions":[],"name":"YearQuarter2","tag":"{{YearQuarter2}}"}],"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},"dataDescription":{"horizontal":false,"series":false},"dataKey":"Dashboard 1001"},"map1737065730397":{"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":true,"territoriesAlwaysShow":false,"language":"en","geoLabelOverride":"","hasRegions":false,"fullBorder":false,"type":"data","convertFipsCodes":true,"palette":{"isReversed":false},"allowMapZoom":true,"hideGeoColumnInTooltip":true,"hidePrimaryColumnInTooltip":false,"statePicked":{"fipsCode":"01","stateName":"Alabama"},"expandDataTable":false,"showDownloadImgButton":true,"navigationTarget":"_self"},"type":"map","color":"sequential-blue-2(MPX)","columns":{"geo":{"name":"LocationAbbr","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":false,"tooltip":true,"prefix":"","suffix":"","name":"PreemptionSummary","label":"PreemptionSummary","roundToPlace":0},"navigate":{"name":""},"latitude":{"name":""},"longitude":{"name":""},"additionalColumn1":{"label":"Government Worksites","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"GovernmentWorksites","tooltip":true},"additionalColumn2":{"label":"Private Worksites","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"PrivateWorksites","tooltip":true},"additionalColumn3":{"label":"Restaurants","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"Restaurants","tooltip":true},"additionalColumn4":{"label":"Bars","dataTable":false,"tooltips":false,"prefix":"","suffix":"","name":"Bars","tooltip":true}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":false,"singleRow":false,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"category","numberOfItems":3,"position":"bottom","title":"","style":"circles","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":true,"categoryValuesOrder":["No Preemption","Preemption for one policy","Preemption for two policies","Preemption for three policies"]},"filters":[],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"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":"map1737065730397","dataKey":"Dashboard 1001 Legislation","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"table1737066155148":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1737066155148","type":"table","table":{"label":"Data Table","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":false,"collapsible":true},"columns":{"Location":{"label":"Location","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"1","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Location","order":1},"PreemptionSummary":{"label":"Preemption Summary","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"PreemptionSummary","order":2},"GovernmentWorksites":{"label":"Government Worksites","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"GovernmentWorksites","order":3},"PrivateWorksites":{"label":"Private Worksites","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"PrivateWorksites","order":4},"Restaurants":{"label":"Restaurants","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Restaurants","order":5},"Bars":{"label":"Bars","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Bars","order":6},"Data_Value":{"name":"Data_Value","dataTable":false},"DisplayOrder":{"name":"DisplayOrder","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"Restriction":{"name":"Restriction","dataTable":false},"YearQuarter":{"name":"YearQuarter","dataTable":false},"TopicDesc":{"name":"TopicDesc","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataKey":"Dashboard 1001 Legislation","dataDescription":{"horizontal":false,"series":false},"general":{"showDownloadButton":false}},"markup-include1739204090270":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739204090270","type":"markup-include","contentEditor":{"inlineHTML":"Source: <a href=\"https://www.cdc.gov/tobacco/\">Office on Smoking and Health (OSH)</a>","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}},"markup-include1741197975382":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1741197975382","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","version":"4.25.1","migrations":{"addColorMigration":true}}},"dashboard":{"theme":"theme-blue","sharedFilters":[{"key":"Location","showDropdown":true,"type":"urlfilter","orderedValues":[],"apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_dashboard&$limit=1000&$select=DISTINCT%20Location&$order=Location","valueSelector":"Location","textSelector":""},"tier":1,"usedBy":["chart1737067831696","table1734732581749"]},{"key":"Time Period","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_legi_dashboard&%24limit=1001&%24select=distinct%20YearQuarter&%24order=YearQuarter%20DESC","valueSelector":"YearQuarter","textSelector":""},"parents":[],"usedBy":["map1737065730397","markup-include1739915383605","map1732051228260","markup-include1739915505122","map1737065730397"],"tier":1,"orderedValues":[]}]},"rows":[{"columns":[{"width":12,"widget":"markup-include1739914942545"}],"uuid":1739914937940},{"columns":[{"width":12,"widget":"dashboardFilters1737066916761"}],"uuid":1739914937940},{"columns":[{"width":12,"widget":"chart1737067831696"}],"uuid":1739914933724,"dataDescription":{}},{"columns":[{"width":12,"widget":"table1734732581749"}],"uuid":1739914930773,"dataDescription":{}},{"columns":[{"width":12,"widget":"markup-include1741197975382"}],"uuid":1741197999931},{"columns":[{"width":12,"widget":"dashboardFilters1732051920923"}],"uuid":1741197999931,"dataDescription":{}},{"columns":[{"width":12,"widget":"markup-include1739915383605"}],"uuid":1741197996571},{"columns":[{"width":12,"widget":"map1732051228260"}],"uuid":1741197992332},{"columns":[{"width":12,"widget":"table1732735270942"}],"uuid":1741197988292,"dataDescription":{}},{"columns":[{"width":12,"widget":"markup-include1739915505122"}],"uuid":1741197984732},{"columns":[{"width":12,"widget":"map1737065730397"}],"uuid":1741197982684,"dataDescription":{}},{"columns":[{"width":12,"widget":"table1737066155148"}],"dataDescription":{},"uuid":1741197980763},{"columns":[{"width":12,"widget":"markup-include1739204090270"}],"uuid":1741197977533}]},{"dashboard":{"sharedFilters":[{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_legi&%24limit=2010&%24select=distinct%20Topic%2c%20TopicOrder&%24order=TopicOrder","valueSelector":"Topic","textSelector":""},"tier":1},{"key":"Location","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2010&$select=DISTINCT%20Location&$order=Location","valueSelector":"Location","textSelector":""},"parents":["Topic"],"tier":2},{"key":"Tobacco Type (Select up to 2 items)","showDropdown":true,"type":"urlfilter","filterStyle":"multi-select","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2011&$select=DISTINCT%20TobaccoType&$order=TobaccoType","subgroupValueSelector":"","textSelector":"","valueSelector":"TobaccoType"},"selectLimit":"2","parents":["Topic","Location"],"tier":2},{"key":"Time Period (Select up to 4)","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2011&$select=DISTINCT%20YearQuarter&$order=YearQuarter DESC","subgroupValueSelector":"","textSelector":"","valueSelector":"YearQuarter"},"parents":["Tobacco Type"],"filterStyle":"multi-select","selectLimit":"4","tier":1}]},"visualizations":{"dashboardFilters1728943790834":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1728943790834","type":"dashboardFilters","sharedFilterIndexes":[0,1],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"applyFiltersButtonText":"View Results"},"table1728944573162":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1728944573162","type":"table","table":{"label":"","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":true,"groupBy":"Provision","pivot":{"columnName":"YearQuarter","valueColumns":["Value"]}},"columns":{"GeoLocation":{"name":"GeoLocation","dataTable":false},"Location":{"name":"Location","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"Measure":{"name":"Measure","dataTable":false},"MeasureId":{"name":"MeasureId","dataTable":false},"OldTopicId":{"name":"OldTopicId","dataTable":false},"Quarter":{"name":"Quarter","dataTable":false},"RowDisplayOrder":{"name":"RowDisplayOrder","dataTable":false},"RowNum":{"name":"RowNum","dataTable":true},"RowType":{"name":"RowType","dataTable":true},"Topic":{"name":"Topic","dataTable":false},"TopicId":{"name":"TopicId","dataTable":false},"Year":{"name":"Year","dataTable":false},"Provision":{"name":"Provision","dataTable":true},"TobaccoType":{"label":" ","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"TobaccoType","order":1},"TopicOrder":{"name":"TopicOrder","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataDescription":{"horizontal":false,"series":false}},"dashboardFilters1729529112232":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1729529112232","type":"dashboardFilters","sharedFilterIndexes":[2,3],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"autoLoad":true},"markup-include1739204209461":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739204209461","type":"markup-include","contentEditor":{"inlineHTML":"Source: <a href=\"https://www.cdc.gov/tobacco/\">Office on Smoking and Health (OSH)</a>","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}},"markup-include1740766038215":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1740766038215","type":"markup-include","contentEditor":{"inlineHTML":"<h2>{{topic}}</h2>\n<h2><em>{{State}} | {{Quarter}}</em></h2>","markupVariables":[{"columnName":"Topic","conditions":[],"name":"topic","tag":"{{topic}}"},{"columnName":"Location","conditions":[],"name":"State","tag":"{{State}}"},{"columnName":"YearQuarter","conditions":[],"name":"Quarter","tag":"{{Quarter}}"}],"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","dataDescription":{"horizontal":false,"series":false},"dataKey":"SbL $datakey=statesystem_legi&$limit=2010","version":"4.25.1","migrations":{"addColorMigration":true}}},"rows":[{"columns":[{"width":12,"widget":"dashboardFilters1728943790834"}],"dataDescription":{},"uuid":1740766143286},{"columns":[{"width":12,"widget":"markup-include1740766038215"}],"uuid":1740766143286},{"columns":[{"width":12,"widget":"dashboardFilters1729529112232"}],"dataDescription":{}},{"columns":[{"width":12,"widget":"table1728944573162"}],"dataDescription":{"horizontal":false,"series":false},"uuid":1740766136509,"multiVizColumn":"Measure","dataKey":"SbL $datakey=statesystem_legi&$limit=2011","expandCollapseAllButtons":true},{"columns":[{"width":12,"widget":"markup-include1739204209461"}],"uuid":1740766132981}],"label":"Search by Location","type":"dashboard","migrations":{"addColorMigration":true}},{"dashboard":{"sharedFilters":[{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_legi&%24limit=2020&%24select=distinct%20Topic%2c%20TopicOrder&%24order=TopicOrder","valueSelector":"Topic","textSelector":""},"tier":1},{"key":"Time Period","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2020&$select=DISTINCT%20YearQuarter&$order=YearQuarter DESC","valueSelector":"YearQuarter","textSelector":""},"parents":["Topic"],"usedBy":[],"tier":2,"orderedValues":[]},{"key":"Tobacco Type (Select up to 2 items)","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2021&$select=DISTINCT%20TobaccoType&$order=TobaccoType&$where=TobaccoType!=%22%22","subgroupValueSelector":"","textSelector":"","valueSelector":"TobaccoType"},"parents":["Topic","Quarter"],"filterStyle":"multi-select","selectLimit":"2","tier":2},{"key":"Location (Select up to 4)","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2021&$select=DISTINCT%20Location&$order=Location","subgroupValueSelector":"","textSelector":"","valueSelector":"Location"},"parents":["Tobacco Type"],"filterStyle":"multi-select","selectLimit":"4","tier":1}]},"visualizations":{"dashboardFilters1729534195633":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1729534195633","type":"dashboardFilters","sharedFilterIndexes":[0,1],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"applyFiltersButtonText":"View Results"},"dashboardFilters1729534404497":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1729534404497","type":"dashboardFilters","sharedFilterIndexes":[2,3],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"autoLoad":true},"table1729537182122":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1729537182122","type":"table","table":{"label":"","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":true,"groupBy":"Provision","pivot":{"columnName":"Location","valueColumns":["Value"]}},"columns":{"GeoLocation":{"name":"GeoLocation","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"Measure":{"name":"Measure","dataTable":false},"MeasureId":{"name":"MeasureId","dataTable":false},"OldTopicId":{"name":"OldTopicId","dataTable":false},"Quarter":{"name":"Quarter","dataTable":false},"RowDisplayOrder":{"name":"RowDisplayOrder","dataTable":false},"RowNum":{"name":"RowNum","dataTable":true},"Topic":{"name":"Topic","dataTable":false},"TopicId":{"name":"TopicId","dataTable":false},"Value":{"name":"Value","dataTable":true},"Year":{"name":"Year","dataTable":false},"YearQuarter":{"name":"YearQuarter","dataTable":false},"Provision":{"name":"Provision","dataTable":true},"TobaccoType":{"label":" ","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"TobaccoType","order":1},"TopicOrder":{"name":"TopicOrder","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataDescription":{"horizontal":false,"series":false}},"markup-include1729635163324":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1729635163324","type":"markup-include","contentEditor":{"inlineHTML":"<h2>{{topic}}</h2>\n<h2><em>{{StateName}} | {{QuarterTitle}}</em></h2>","markupVariables":[{"columnName":"Location","conditions":[],"name":"StateName","tag":"{{StateName}}"},{"columnName":"YearQuarter","conditions":[],"name":"QuarterTitle","tag":"{{QuarterTitle}}"},{"columnName":"Topic","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":"SbTP $datakey=statesystem_legi&$limit=2020","dataDescription":{"horizontal":false,"series":false},"version":"4.25.1","migrations":{"addColorMigration":true}},"markup-include1739204238862":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739204238862","type":"markup-include","contentEditor":{"inlineHTML":"Source: <a href=\"https://www.cdc.gov/tobacco/\">Office on Smoking and Health (OSH)</a>","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":"dashboardFilters1729534195633"}],"dataDescription":{"horizontal":false,"series":false}},{"columns":[{"width":12,"widget":"markup-include1729635163324"}],"uuid":1729635180241,"dataDescription":{"horizontal":false,"series":false}},{"columns":[{"width":12,"widget":"dashboardFilters1729534404497"}],"dataDescription":{"horizontal":false,"series":false},"uuid":1729635180241},{"columns":[{"width":12,"widget":"table1729537182122"}],"dataDescription":{"horizontal":false,"series":false},"uuid":1729635175872,"dataKey":"SbTP $datakey=statesystem_legi&$limit=2021","multiVizColumn":"Measure","expandCollapseAllButtons":true},{"columns":[{"width":12,"widget":"markup-include1739204238862"}]}],"label":"Search by Time Period","type":"dashboard","migrations":{"addColorMigration":true}},{"dashboard":{"sharedFilters":[{"key":"Topic","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?%24datakey=statesystem_legi&%24limit=2030&%24select=distinct%20Topic%2c%20TopicOrder&%24order=TopicOrder","valueSelector":"Topic","textSelector":""},"usedBy":[],"tier":1},{"key":"Tobacco Type","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2030&$select=DISTINCT%20TobaccoType&$order=TobaccoType&$where=TobaccoType!=%22%22","valueSelector":"TobaccoType","textSelector":""},"parents":["Topic","Measure","Sub-Measure"],"usedBy":["table1729541872326"],"tier":1,"orderedValues":[]},{"key":"Time Period (Select up to 4)","showDropdown":true,"type":"urlfilter","filterStyle":"multi-select","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi&$limit=2030&$select=DISTINCT%20YearQuarter&$order=YearQuarter DESC","subgroupValueSelector":"","textSelector":"","valueSelector":"YearQuarter"},"selectLimit":"4","parents":["Topic","Measure","Sub-Measure","Tobacco Type"],"usedBy":["table1729541872326"],"tier":2,"orderedValues":[]},{"key":"Measure","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_all_locations&$limit=2031&$select=DISTINCT%20Measure&$order=Measure","valueSelector":"Measure","textSelector":""},"usedBy":[],"parents":["Topic"],"tier":2},{"key":"Sub-Measure","showDropdown":true,"type":"urlfilter","apiFilter":{"apiEndpoint":"https://nccd-proxy.cdc.gov/NCCD_COVE_API?$datakey=statesystem_legi_all_locations&$limit=2031&$select=DISTINCT%20Provision&$order=Provision","valueSelector":"Provision","textSelector":""},"parents":["Measure"],"usedBy":[],"tier":3}]},"visualizations":{"dashboardFilters1729541409268":{"filters":[],"filterBehavior":"Apply Button","newViz":true,"openModal":true,"uid":"dashboardFilters1729541409268","type":"dashboardFilters","sharedFilterIndexes":[0,3,4],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"autoLoad":false,"applyFiltersButtonText":"View Results","showEditorPanel":false},"table1729541872326":{"filters":[],"filterBehavior":"Filter Change","newViz":false,"openModal":true,"uid":"table1729541872326","type":"table","table":{"label":"","show":true,"showDownloadUrl":false,"showVertical":true,"expanded":true,"collapsible":false,"pivot":{"columnName":"YearQuarter","valueColumns":["Value"]}},"columns":{"GeoLocation":{"name":"GeoLocation","dataTable":false},"LocationAbbr":{"name":"LocationAbbr","dataTable":false},"Measure":{"name":"Measure","dataTable":false},"MeasureId":{"name":"MeasureId","dataTable":false},"OldTopicId":{"name":"OldTopicId","dataTable":false},"Provision":{"name":"Provision","dataTable":false},"Quarter":{"name":"Quarter","dataTable":false},"RowDisplayOrder":{"name":"RowDisplayOrder","dataTable":false},"RowNum":{"name":"RowNum","dataTable":true},"TobaccoType":{"name":"TobaccoType","dataTable":false},"Topic":{"name":"Topic","dataTable":false},"Year":{"name":"Year","dataTable":false},"TopicId":{"name":"TopicId","dataTable":false},"Location":{"label":"State","dataTable":true,"tooltips":false,"prefix":"","suffix":"","forestPlot":false,"startingPoint":"0","forestPlotAlignRight":false,"roundToPlace":0,"commas":false,"showInViz":false,"forestPlotStartingPoint":0,"name":"Location","order":1},"TopicOrder":{"name":"TopicOrder","dataTable":false}},"dataFormat":{},"visualizationType":"table","dataKey":"SbAL $datakey=statesystem_legi&$limit=2031","dataDescription":{"horizontal":false,"series":false}},"dashboardFilters1729542268478":{"filters":[],"filterBehavior":"Filter Change","newViz":true,"openModal":true,"uid":"dashboardFilters1729542268478","type":"dashboardFilters","sharedFilterIndexes":[1,2],"visualizationType":"dashboardFilters","dataDescription":{"horizontal":false,"series":false},"autoLoad":true},"markup-include1733861851857":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1733861851857","type":"markup-include","contentEditor":{"inlineHTML":"<h2>{{topic}}</h2>","markupVariables":[{"columnName":"Topic","conditions":[],"name":"topic","tag":"{{topic}}"}],"showHeader":true,"srcUrl":"#example","title":"","useInlineHTML":true,"allowHideSection":false},"theme":"theme-blue","visual":{"border":false,"accent":false,"background":false,"hideBackgroundColor":false,"borderColorTheme":false},"showEditorPanel":true,"visualizationType":"markup-include","dataDescription":{"series":false},"dataKey":"SbAL $datakey=statesystem_legi&$limit=2030","version":"4.24.10"},"markup-include1739204271998":{"filters":[],"filterBehavior":"Filter Change","openModal":false,"uid":"markup-include1739204271998","type":"markup-include","contentEditor":{"inlineHTML":"Source: <a href=\"https://www.cdc.gov/tobacco/\">Office on Smoking and Health (OSH)</a>","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":"dashboardFilters1729541409268"}],"dataDescription":{}},{"columns":[{"width":12,"widget":"markup-include1733861851857"}],"dataDescription":{"horizontal":false,"series":false},"uuid":1733861955862},{"columns":[{"width":12,"widget":"dashboardFilters1729542268478"}],"uuid":1733861954085,"dataDescription":{"horizontal":false,"series":false}},{"columns":[{"width":12,"widget":"table1729541872326"}],"dataDescription":{"horizontal":false,"series":false},"uuid":1733861952573},{"columns":[{"width":12,"widget":"markup-include1739204271998"}]}],"label":"Search by All Locations","type":"dashboard","migrations":{"addColorMigration":true}}],"uuid":1741197969197,"migrations":{"addColorMigration":true}}