You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use AlgebraOfGraphics.jl, How can I hide the legend title? Here is an example.
using RDatasets, AlgebraOfGraphics, CairoMakie
df = dataset("datasets", "iris")
plt = data(df) * mapping(:Species, :SepalLength, color = :Species) * visual(Violin)
fg = draw(plt; legend = (position = :bottom, titlevisible = false, framevisible = false))
How can I hide the legend title “Species”? I try to use titlevisible = false, but it does not work.
The text was updated successfully, but these errors were encountered:
Dear all,
When I use AlgebraOfGraphics.jl, How can I hide the legend title? Here is an example.
using RDatasets, AlgebraOfGraphics, CairoMakie
df = dataset("datasets", "iris")
plt = data(df) * mapping(:Species, :SepalLength, color = :Species) * visual(Violin)
fg = draw(plt; legend = (position = :bottom, titlevisible = false, framevisible = false))
How can I hide the legend title “Species”? I try to use titlevisible = false, but it does not work.
The text was updated successfully, but these errors were encountered: