<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to change feature layer's outline color only? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543772#M50627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;I have SimpleFillSymbol&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;var simpleFillSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_NULL,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new SimpleLineSymbol(SimpleLineSymbol.STYLE_DASHDOT,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new Color([255, 0, 0]), 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;BR /&gt;then a render&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var simpleRender = new SimpleRender(simpleFillSymbol);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then I set the featureLayer&lt;/P&gt;&lt;P&gt; featureLayer.setRenderer(simpleRender);&lt;/P&gt;&lt;P&gt;this feature already including polygons and fill colors based on their characteristics., ie... yellow red, blue, etc..&lt;/P&gt;&lt;P&gt;all I want is to change the outline color..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 May 2016 03:16:56 GMT</pubDate>
    <dc:creator>LinhNguyen2</dc:creator>
    <dc:date>2016-05-08T03:16:56Z</dc:date>
    <item>
      <title>how to change feature layer's outline color only?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543770#M50625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need help here.. I use the simpleRender with simpleFillSymbol to change the outine color,&lt;/P&gt;&lt;P&gt;but the problem is that it also override the featurelayer's fill color too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way just to change the outline color only?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 May 2016 23:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543770#M50625</guid>
      <dc:creator>LinhNguyen2</dc:creator>
      <dc:date>2016-05-07T23:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to change feature layer's outline color only?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543771#M50626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Linh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; What does your code look like right now to change the outline? Are you getting the renderers symbol using "getsymbol" method and then using the "setOutline" method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 May 2016 01:07:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543771#M50626</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-08T01:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to change feature layer's outline color only?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543772#M50627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;I have SimpleFillSymbol&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;var simpleFillSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_NULL,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new SimpleLineSymbol(SimpleLineSymbol.STYLE_DASHDOT,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new Color([255, 0, 0]), 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;BR /&gt;then a render&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var simpleRender = new SimpleRender(simpleFillSymbol);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then I set the featureLayer&lt;/P&gt;&lt;P&gt; featureLayer.setRenderer(simpleRender);&lt;/P&gt;&lt;P&gt;this feature already including polygons and fill colors based on their characteristics., ie... yellow red, blue, etc..&lt;/P&gt;&lt;P&gt;all I want is to change the outline color..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 May 2016 03:16:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543772#M50627</guid>
      <dc:creator>LinhNguyen2</dc:creator>
      <dc:date>2016-05-08T03:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to change feature layer's outline color only?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543773#M50628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it..&amp;nbsp; by get their symbols and reset their outline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 May 2016 05:33:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543773#M50628</guid>
      <dc:creator>LinhNguyen2</dc:creator>
      <dc:date>2016-05-08T05:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to change feature layer's outline color only?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543774#M50629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Linh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Glad you got what I was saying. Be sure to mark this thread as answered by clicking on the correct answer link for the post that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 May 2016 19:43:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-change-feature-layer-s-outline-color-only/m-p/543774#M50629</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-08T19:43:11Z</dc:date>
    </item>
  </channel>
</rss>

