Hello everyone,
I've run into what I think is an issue. In my display, I want to have a legend of all the different colors I use. When I created the colors, I used the custom colors palate to create colors that were appropriate for my model. I selected different combinations of rgb values. That worked well. Now, I want to create a legend of those colors. To find the names of those colors, I went to the internet and used the hex value for each color. So I have a string name and an rgb value for each color. To make the legend I use
map<string, rgb> salinity_values <- ["Bermuda"::127,204,197, "Picton Blue"::90,161,222];
This is just a subset of values from my legend, but it gives you the idea of what I'm talking about. What is happening when I run the model, is this
note that the numerical values in the legend are the rgb values. I cannot seem to find a way to record the custom rgb values in the legend. Is this a bug?
Chris