I am trying to figure out how to get rid of these breaks within my chart: enter image description here
Below is the R code to produce that chart. Thank you for your help.
hchart(dfDouble %>% filter(Year == 2021), "column", hcaes(x = Day, y = FC), name = "Current FC", showInLegend = TRUE) %>%
hc_add_series(dfDouble %>% filter(Year == 2020), "column", hcaes(x = Day, y = FC), name = "Prev FC", showInLegend = TRUE) %>%
hc_title(text = "Revenue YTD")