I'm using RadzenChart to display columns, silimar to this example:
Blazor Column Chart Component | Free UI Components by Radzen
This works great but in order to get a better styling, I use this code to make my column bars smaller:
<RadzenColumnOptions Radius="4" Width="20" />
While this looks the way I want on normal screens, I also have to make sure that the diagram works fine on small screens (mobile). However, due to the fixed width, the diagram becomes disorted when showing on a small screen.
Is there any way to apply this with parameter conditionally based on breakpoints? Like SizeMD= parameters for RadzenColumn?