Following up from slack, titlevisible seems to be ignored when trying the legend tweaking capabilities introduced in #291
using AlgebraOfGraphics, CairoMakie
N = 30
df = DataFrame(
Fruit = rand(["apple", "pear", "banana", "watermelon"], N),
Country = rand(["US", "CA", "MX"], N),
Weight = rand(1:10, N),
)
plt = data(df) *
mapping(:Fruit, :Weight, dodge=:Country, color=:Country) *
visual(BarPlot)
draw(plt, legend=(position=:top, titlevisible=false))
