'Get rid of white space between bars

Helo! How can I get rid of the white space between the bars? I don't want space between the bares in the plot.

ggplot(global.ratios_gather,aes(x=Timeslot, y=N, fill=Section)) +
  theme_bw() +
  geom_bar(stat="identity", position = "stack", size=5) +
  scale_fill_manual(values = c("darkseagreen","deepskyblue","greenyellow"))

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source