<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">All,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I have been trying to set a custom color for my rectangles in a LegendWidget I am using. I was looking into the provided example code that said that the fillColor could be a string or object. Is there an example of how the fillColor object
 should be constructed?  <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Here is some example code of what I’m trying to do:<o:p></o:p></p>
<p class="MsoNormal">Note that the uilayer is a reference to a layer that I already made before instantiating the legendWidget.
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<pre style="background:white"><b><span style="font-size:9.0pt;color:navy">var </span></b><span style="font-size:9.0pt;color:black">legend = </span><b><span style="font-size:9.0pt;color:green">uilayer</span></b><span style="font-size:9.0pt;color:black">.createWidget(</span><b><span style="font-size:9.0pt;color:green">'legend'</span></b><span style="font-size:9.0pt;color:black">, {<br>    position : {<br>        bottom : </span><span style="font-size:9.0pt;color:blue">0</span><span style="font-size:9.0pt;color:black">,<br>        right: </span><span style="font-size:9.0pt;color:blue">0<br>    </span><span style="font-size:9.0pt;color:black">}<br>});<o:p></o:p></span></pre>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal" style="background:white"><span style="font-size:9.0pt;font-family:"Courier New";color:black">legend.categories([{<br>
   name : </span><b><span style="font-size:9.0pt;font-family:"Courier New";color:green">"Test"</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">,<br>
   style: {<br>
     fill : </span><b><span style="font-size:9.0pt;font-family:"Courier New";color:navy">true</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">,<br>
     fillColor: {</span><b><span style="font-size:9.0pt;font-family:"Courier New";color:green">'r'
</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">: </span>
<span style="font-size:9.0pt;font-family:"Courier New";color:blue">1</span><span style="font-size:9.0pt;font-family:"Courier New";color:black">,
</span><b><span style="font-size:9.0pt;font-family:"Courier New";color:green">'b'
</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">: </span>
<span style="font-size:9.0pt;font-family:"Courier New";color:blue">1</span><span style="font-size:9.0pt;font-family:"Courier New";color:black">,
</span><b><span style="font-size:9.0pt;font-family:"Courier New";color:green">'g'</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">:
</span><span style="font-size:9.0pt;font-family:"Courier New";color:blue">0</span><span style="font-size:9.0pt;font-family:"Courier New";color:black">}<br>
    },<br>
   type : </span><b><span style="font-size:9.0pt;font-family:"Courier New";color:green">'rect'<br>
</span></b><span style="font-size:9.0pt;font-family:"Courier New";color:black">}]);<o:p></o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I was under the assumption that the color object would be an rgb object with values 0 to 1 as I have seen in other places in the geo.js code (specifically the geoJson reader)<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Any help would be appreciated.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks,<o:p></o:p></p>
<p class="MsoNormal">Erik<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<br>
<hr>
<br>
<h5><font style="color:#969696;">The information contained in this email message is intended only for the use of the individual(s) to whom it is addressed and may contain information that is privileged and sensitive. If you are not the intended recipient, or
 otherwise have received this communication in error, please notify the sender immediately by email at the above referenced address and note that any further dissemination, distribution or copying of this communication is strictly prohibited.
<br>
<br>
The U.S. Export Control Laws regulate the export and re-export of technology originating in the United States. This includes the electronic transmission of information and software to foreign countries and to certain foreign nationals. Recipient agrees to abide
 by these laws and their regulations -- including the U.S. Department of Commerce Export Administration Regulations and the U.S. Department of State International Traffic in Arms Regulations -- and not to transfer, by electronic transmission or otherwise, any
 content derived from this email to either a foreign national or a foreign destination in violation of such laws.
</font></h5>
</body>
</html>