Hello,
I have a feature service that is symbolized using bivariate colors for two continuous variables. The grid size is 3x3, so there are nine possible colors on the map (see screen shot). In the pop-up window, I want to provide textual context for the color using an Arcade When() function, but I'm not sure how to do that with this type of symbology. Is it possible to set up a conditional for the pop-up window based off of the colors of the map, rather than the values in a field? General concept below.
When(
featurecolor == 'red', "High Conservation Need",
featurecolor == 'purple', "High Restoration Need",
featurecolor == 'green', "High Protection Need",
featurecolor == nocolor, "No Protection or Restoration Goals"
)