I have read that HH package uses lattice package under the hood especially barchart() function.
My question would be how to get to that function from HH package to modify bars ?
Another thing is that when I use this code:
library(HH)
data("ProfChal")
HH::likert(Question ~ . , ProfChal[ProfChal$Subtable=="Employment sector",],
ylab=NULL,
main = "",
auto.key = list(columns = 1, reverse.rows = T),
as.percent = T,
borders = list()) # <- This draws borders around the bars in the plot
borders = list()) is used to draw borders around bars but somehow it always divides not necessarily center block (here No Opinion) in two parts. How to get rid of this center black line ?
library(HH)
data("ProfChal")
HH::likert(Question ~ . , ProfChal[ProfChal$Subtable=="Employment sector",],
ylab=NULL,
main = "",
auto.key = list(columns = 1, reverse.rows = T),
as.percent = T,
borders = list()) # <- This draws borders around the bars in the plot

Created on 2022-12-16 with reprex v2.0.2
So my desired result will be that, without centering/dividing line in gray rectangle:
How do I do it, please ?