
Moves the layer to be a child of its right group layer sibling
Source:R/l_layer.R
l_layer_demote.Rd
Moves the layer up the layer tree (away from the root layer) if there is a sibling group layer to the right of the layer.
Examples
if(interactive()){
p <- l_plot()
g1 <- l_layer_group(p)
g2 <- l_layer_group(p, parent=g1)
l1 <- l_layer_oval(p, x=0:1, y=0:1)
l_layer_printTree(p)
l_layer_demote(p, l1)
l_layer_printTree(p)
l_layer_demote(p, l1)
l_layer_printTree(p)
}