RadzenTree select child nodes with @bind-Value=@selection

Hello,

I have a RadzenTree with 3 levels and I want to know if with the @bind-value I can select nodes from levels 2 and 3, since it is only working with parent level nodes.

<RadzenTree Data="@unidades" Style="width: 100%;" Change="@Detalle" @bind-Value=@selection>
    <RadzenTreeLevel TextProperty="Nombre" ChildrenProperty="Area" Template="@UnidadTemplate" />
    <RadzenTreeLevel TextProperty="Nombre" ChildrenProperty="Servicio" Template="@AreaTemplate" />
    <RadzenTreeLevel TextProperty="Nombre" HasChildren="@((servicio) => false)" Template="@ServicioTemplate" />
 </RadzenTree>

Thank you very much in advance.