Default for Dropdown

<RadzenDropDown
Data="@truckStatusesForStatusId"
TextProperty="Value"
ValueProperty="Id"
AllowClear=true
Disabled=@(hasStatusIdValue)
Placeholder="Choose Truck Status"
style="display: block; width: 100%" 
@bind-Value="@truck.StatusId" 
Name="StatusId" />

I'd like to set the default value to "Active" assuming it exists in the Data that populates the dropdown

The only way is to set the bound property value.