Hi,
I would like to draw a boxplot with no fill color and just lines to define the box contour.
I am trying:
using GLMakie
xs = rand(1:3, 99)
ys = randn(99)
boxplot(xs, ys, color = :transparent, strokewidth = 1)
This produces almost complete boxes: they are open on the left side.
Is it a bug or should I use something different?