Ok, I am working on a system to allow an administrator to configure a Pseudo-CSS for a set of reports and store it in SQL Server. The end user then can use expressions to apply the style elements in the properties of each report element. Whenever the admin is configuring a style element that refers to color, I enumerate the known colors collection to populate a dropdown list so the user can select a color name rather than type it out. Here is what I found:
The known color name is "LightGray" from the enumeration, However SSRS enumerates it as "LightGrey"!
Is this a known issue? It took me the better part of the day yesterday to realize what was going on in my testing. Is there a different collection I need to be pulling names from that SSRS understands?
Thanks,
Don