Say I have a geodatabase containing a feature class with the following fields:
objectid mapunit geom
The mapunits are defined in another table that includes a color:
objectid mapunit(unique) color
How can I render the features in the feature class in the color corresponding to their mapunit?
I've experimented with unique value renderers, but I can't figure out how to use them to assign a specific color to a specific value of mapunit.
It seems like this was possible in an older .NET SDK ("Unique value renderer section" in https://developers.arcgis.com/net/10-2/desktop/guide/symbols-and-renderers.htm). But with ArcGIS Pro, you have to specify a color ramp and one or more fields to examine. I don't see a way to map to specific values of those fields.
If I specify a color ramp from the colors in the definition table, it seems like the renderer uses a first-come assignment to the values it finds in the mapunit field of the feature class--I don't have control over that mapping.
Does anyone have any suggestions?