Some Event Binding Not Working

Does Radzen support all the @on events or just a select few? I'm not finding anything definitive in the forums or on Google.

In other words why does one work and not the other?

<Tabs>
   <RadzenTabsItem Text="Businesses">
      <RadzenGoogleMap  @onfocus="@(args => MapLegalNotice())" />
   </RadzenTabsItem>
   <RadzenTabsItem Text="Users">
      <RadzenGoogleMap @onclick="@(args => MapLegalNotice())" />
   </RadzenTabsItem>
</Tabs>

protected void MapLegalNotice()
{
     //do stuff
}

onclick fires and works as expected but onfocus doesn't??

Yes, arbitrary attributes can be set to all Radzen Blazor components including GoogleMap:

Not sure however if Google Map will raise focus.