Is there a way to turn off or hide the alerts a visual throws up in case of Nan, invalid values in case of calculated fields or invalid zip codes in map visuals?
@souradeepd you can use custom style / CSS , something like below.
Best to inspect the page HTML to make sure you are selecting the correct object class
.viz-alert.alert-warning {
display: none;
}
1 Like