<?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: Unique Value Renderer in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145857#M3673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can do it by code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; . Wire up an Handler to the Legend Refreshed event.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; . Remove and Modify legend items in the&amp;nbsp; 'LegendItems' collection for getting what you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2012 13:42:33 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2012-06-08T13:42:33Z</dc:date>
    <item>
      <title>Unique Value Renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145854#M3670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is is possible to use the unique value renderer to display null values as a symbol or all other values?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 19:00:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145854#M3670</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2012-06-07T19:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unique Value Renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145855#M3671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is is possible to use the unique value renderer to display null values as a symbol or all other values? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should be able to define a symbol for the null value and a default symbol for all others values with a renderer like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:UniqueValueRenderer x:Key="MyUniqueValueRenderer" Field="MyField" DefaultSymbol="{StaticResource MyDefaultSymbol}" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:UniqueValueRenderer.Infos&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:UniqueValueInfo Value="{x:Null}" Symbol="{StaticResource MyNullSymbol}" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:UniqueValueRenderer.Infos&amp;gt;
&amp;lt;/esri:UniqueValueRenderer&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not tested though, so sorry in advance if not working.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:57:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145855#M3671</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-11T07:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unique Value Renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145856#M3672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That works for the nulls but what about grouping the values into one symbol.&amp;nbsp; I need a way to merge these three lines into one so that they are only one row in the legend as other and not 3 rows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:UniqueValueInfo Value="{x:Null}" Label="Other" Symbol="{StaticResource OtherAccessLineSymbol}" /&amp;gt;
&amp;lt;esri:UniqueValueInfo Value="1WAY" Label="Other" Symbol="{StaticResource OtherAccessLineSymbol}" /&amp;gt;
&amp;lt;esri:UniqueValueInfo Value="0" Label="Other" Symbol="{StaticResource OtherAccessLineSymbol}" /&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:57:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145856#M3672</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2021-12-11T07:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unique Value Renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145857#M3673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can do it by code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; . Wire up an Handler to the Legend Refreshed event.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; . Remove and Modify legend items in the&amp;nbsp; 'LegendItems' collection for getting what you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 13:42:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/unique-value-renderer/m-p/145857#M3673</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-06-08T13:42:33Z</dc:date>
    </item>
  </channel>
</rss>

