Just a quick question on divide by zero instances. I have a few columns on a dashboard that divide one variable by another. Other than using set property for each and every one, I thought maybe I could just use an if statement in the label, but I just keep getting errors. Following is one statement, would love a little feedback on how to use an if statement in this case or let me know a different way to handle this.
I might need more guidance on that. I am using
<RadzenLabel Text="@(${data.LastDocumentDate == null : "" : data.LastDocumentDate.ToString()})">
and it doesn't work.
For future post readers, this is what finally worked:
@{
string documentDate = data.LastDocumentDate != null ? data.LastDocumentDate.ToString() : "";
}
RadzenLabel Text=@documentDate