score:0

Accepted answer

Seting plotOptions.column.borderWidth to 0 should help remove breaks between stacked column segments.

According to the documentation: The width of the border surrounding each column or bar. Defaults to 1 when there is room for a border, but to 0 when the columns are so dense that a border would cover the next column.

   plotOptions: {
    column: {
      stacking: 'normal',
      borderWidth: 0,
    },
  },

Live demo: https://jsfiddle.net/BlackLabel/1kut32c8/

API References: https://api.highcharts.com/highcharts/plotOptions.column.borderWidth

score:1

Yes, you can set borderWidth and that should fix the problem: https://api.highcharts.com/highcharts/plotOptions.column.borderWidth

Code in R:

library('highcharter')
highchart() %>%
  hc_chart(type = "column") %>% 
  hc_series(
    list(data=list(5, 4, 3, 5)),
    list(data=list(5, 4, 3, 5))
  ) %>% 
  hc_plotOptions(column = list(
    stacking = "normal",
    borderWidth = 0
    )
  ) 

Related Query