Get Datagrid to work

Hi, im new to Radzen and Blazor trying to get the Datagrid to work. Unfortunately i dont get any response or error messages. Below the test i'm trying toe get to work. The Table with the foreach loop works as expected. Could any of you give some pointers?

Much appreciated

<'RadzenDataGrid Data="@_data" TItem="Data">
<'Columns>
<'RadzenGridColumn TItem="Data" Property="name" Title="name" />
<'RadzenGridColumn TItem="Data" Property="value" Title="value" />
<'/Columns>
<'/RadzenDataGrid>

@code {

public class Data
{
    public int id { get; set; }
    public string name { get; set; } = string.Empty;
    public string value { get; set; } = string.Empty;
}

public IEnumerable<Data> _data;

protected override async Task OnInitializedAsync()
{
    _data =  ( new List<Data>()
    {
        new Data() {id = 1, name= "class a", value="one"},
        new Data() {id = 2, name= "class a", value="two"},
        new Data() {id = 1, name= "class b", value="three"},
        new Data() {id = 2, name= "class b", value="four"}
    });
}

}

You should use RadzenDataGridColumn instead of RadzenGridColumn:

<RadzenDataGrid Data="@_data" TItem="Data">
<Columns>
<RadzenDataGridColumn TItem="Data" Property="name" Title="name" />
<RadzenDataGridColumn TItem="Data" Property="value" Title="value" />
</Columns>
</RadzenDataGrid>

Thank you very much! Works like a dream.