Good Afternoon,
I have an arcade expression in Map Viewer that looks at a service with a field that updates near real time:
var activity_label2 = When($feature.MINUTES <= 15, '15 min', $feature.MINUTES >= 16 && $feature.MINUTES <= 60, '60 min', "Inactive");
return activity_label2
It essentially sets up the symbology into three categories depending on the field value. It is fine if the dataset has enough data to "fill the buckets". It allows me to customize the symbology at that point. However, if the dataset doesn't meet all 3 category criteria, then I am unable to customize the missing categories. This makes it hard to give my users a web map that has complete symbology that will appear once that data comes in. Any ideas how to get around this?