I want to create an interactive plot where I keep replotting new stuff (by replacing the old stuff) in my GridLayout. Is there an equivalent of empty!(g::GridPosition)
like we have for empty!(ax::Axis)
?
Maybe try foreach(delete!, contents(gridposition))
Ah right for nested GridLayouts the delete! function doesn’t work, that would need recursion into the children and removing all of those as well before deleting the parent