<?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: Selection symbol on GraphicsLayer in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734736#M9208</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a workaround, you can define SelectionColor in code as following to remove white halos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;_graphicsLayer.SelectionColor = &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 10pt; font-family: Consolas;"&gt;Color&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;.FromArgb(0, 0, 0, 0);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Aug 2015 10:47:10 GMT</pubDate>
    <dc:creator>AnttiKajanus1</dc:creator>
    <dc:date>2015-08-27T10:47:10Z</dc:date>
    <item>
      <title>Selection symbol on GraphicsLayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734734#M9206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GraphicsLayer has a property SelectionColor. This is the color of the 'halo' around features/graphics of the layer that have IsSelected to true. Is it possible not to have the halo set for the selected features and only manually maintain the selection symbol? I tried setting .SelectionColor = Colors.Transparent; but this produces the halo to be white. Is there any control around the way how this halo is produced?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Szymon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 10:36:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734734#M9206</guid>
      <dc:creator>SzymonPiskula</dc:creator>
      <dc:date>2015-08-19T10:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selection symbol on GraphicsLayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734735#M9207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that this occurs when you are using GraphicsLayer on Dynamic rendering more. Static rendering mode seems to work. Unfortunately it seems that if you want to use RenderingMode = Dynamic which is default, you will see white halo when using Transparent selection color. As a work around, you can use Static rendering mode if that suits to your use case. I&amp;nbsp; will log a bug for the dynamic mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_1440580707675886" data-renderedposition="92_8_912_16" jivemacro_uid="_1440580707675886" modifiedtitle="true"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 10pt; font-family: Consolas;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 10pt; font-family: Consolas;"&gt;GraphicsLayer&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: Consolas;"&gt; ID&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;="graphicsLayer"&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: Consolas;"&gt; RenderingMode&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;="Static"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: Consolas;"&gt; SelectionColor&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;="Transparent" /&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 09:20:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734735#M9207</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-08-26T09:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection symbol on GraphicsLayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734736#M9208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a workaround, you can define SelectionColor in code as following to remove white halos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;_graphicsLayer.SelectionColor = &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 10pt; font-family: Consolas;"&gt;Color&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;.FromArgb(0, 0, 0, 0);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 10:47:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/selection-symbol-on-graphicslayer/m-p/734736#M9208</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-08-27T10:47:10Z</dc:date>
    </item>
  </channel>
</rss>

