<?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: GraphicsLayer SimpleFillSymbol + Label in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105077#M2651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That geometry service and adding a dynamic label would likely do the trick. Thanks - didn't even think about that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Sep 2013 12:25:01 GMT</pubDate>
    <dc:creator>JustinHunter</dc:creator>
    <dc:date>2013-09-26T12:25:01Z</dc:date>
    <item>
      <title>GraphicsLayer SimpleFillSymbol + Label</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105073#M2647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm fairly new at Silverlight so I apologize in advance if this is a stupid question. I'm looking to be able to use a simple fill on my polygons but I'd also like to add a label to them and I can't seem to figure out how to do so... My renderer uses a field called "total_amt" to determine which colour of fill to use.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Sep 2013 12:59:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105073#M2647</guid>
      <dc:creator>JustinHunter</dc:creator>
      <dc:date>2013-09-19T12:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer SimpleFillSymbol + Label</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105074#M2648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As far as I know only renderers have the label attribute available. Could you describe your problem a bit more? Is "total_amt" an attribute of your graphics? How do you represent your color? ARGB, string or something else?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 05:10:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105074#M2648</guid>
      <dc:creator>JohanCarlsson</dc:creator>
      <dc:date>2013-09-26T05:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer SimpleFillSymbol + Label</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105075#M2649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Each graphic has multiple attributes - total_amt is one of them... &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a ClassBreaksRenderer that uses total_amt as the field&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;esri:ClassBreaksRenderer x:Key="MyClassBreaksRenderer" Field="total_amt"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ClassBreaksRenderer.Classes&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ClassBreakInfo MinimumValue="0" MaximumValue="50" Symbol="{StaticResource LowFillSymbol}"&amp;nbsp; Label="$0 - $50" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ClassBreakInfo MinimumValue="50" MaximumValue="100" Symbol="{StaticResource MediumFillSymbol}" Label="$50 - $100" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ClassBreakInfo MinimumValue="100" MaximumValue="1000000" Symbol="{StaticResource HighFillSymbol}" Label="$100+" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:ClassBreaksRenderer.Classes&amp;gt;
&amp;lt;/esri:ClassBreaksRenderer&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;but it'd be great if the graphic could also show a label based off the attribute: name&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:25:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105075#M2649</guid>
      <dc:creator>JustinHunter</dc:creator>
      <dc:date>2021-12-11T06:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer SimpleFillSymbol + Label</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105076#M2650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So you want a label visualized on top of the polygon in your map view, not a label in the map contents? I am not too familiar with bindings in xaml unfortunately, but perhaps &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/threads/12684-How-can-I-label-features-rendered-in-a-feature-layer" rel="nofollow" target="_blank"&gt;this&lt;/A&gt;&lt;SPAN&gt; can help you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:35:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105076#M2650</guid>
      <dc:creator>JohanCarlsson</dc:creator>
      <dc:date>2013-09-26T11:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: GraphicsLayer SimpleFillSymbol + Label</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105077#M2651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That geometry service and adding a dynamic label would likely do the trick. Thanks - didn't even think about that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 12:25:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/graphicslayer-simplefillsymbol-label/m-p/105077#M2651</guid>
      <dc:creator>JustinHunter</dc:creator>
      <dc:date>2013-09-26T12:25:01Z</dc:date>
    </item>
  </channel>
</rss>

