<?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 do labelling with AGSUniqueValueRenderer? in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201446#M1828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Good to know that you got it working now. The 'label' is basically a name of the symbol and 'description' is the description of the symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2012 16:00:27 GMT</pubDate>
    <dc:creator>NimeshJarecha</dc:creator>
    <dc:date>2012-03-12T16:00:27Z</dc:date>
    <item>
      <title>How to do labelling with AGSUniqueValueRenderer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201443#M1825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can set labelling in AGSSimpleRenderer as follows: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSCompositeSymbol *composite = [AGSCompositeSymbol compositeSymbol];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSTextSymbol *textSymbol = [AGSTextSymbol textSymbolWithTextTemplate:@"${pointID}" color:[UIColor redColor]];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[composite.symbols addObject:textSymbol];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSSimpleRenderer *renderer = [AGSSimpleRenderer simpleRendererWithSymbol:composite];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, I've a problem to do likewise with AGSUniqueValueRenderer. Any clue on how to do it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rgds&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ong CF&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2012 14:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201443#M1825</guid>
      <dc:creator>c_f_ong</dc:creator>
      <dc:date>2012-03-09T14:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to do labelling with AGSUniqueValueRenderer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201444#M1826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ong CF,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the case of Simple Renderer, there is only one symbol so you created one composite symbol. In the case of Unique Value Renderer, it depends on how many unique values are there. Suppose there are 5 unique values then you will have to create 5 composite symbols (simple symbol + text symbol) for each.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please refer &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgismobile/10.0/apis/iOS/2.1/concepts/00pw/00pw00000021000000.htm" rel="nofollow" target="_blank"&gt;Working with Symbols and Renderers &lt;/A&gt;&lt;SPAN&gt;doc. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2012 15:31:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201444#M1826</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-03-09T15:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to do labelling with AGSUniqueValueRenderer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201445#M1827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply &amp;amp; I've got it to work now as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// Create AGSUniqueValue objects&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSUniqueValue *stn = [[AGSUniqueValue alloc] initWithValue:@"STN" label:nil description:nil symbol:composite];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another query: What is the 'label' in the above statement used for? Thought it's for 'labelling' the symbol as what I had wanted to do. Also, how is the 'description' being used?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rgds&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ong CF&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Mar 2012 00:31:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201445#M1827</guid>
      <dc:creator>c_f_ong</dc:creator>
      <dc:date>2012-03-10T00:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to do labelling with AGSUniqueValueRenderer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201446#M1828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Good to know that you got it working now. The 'label' is basically a name of the symbol and 'description' is the description of the symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:00:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201446#M1828</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-03-12T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to do labelling with AGSUniqueValueRenderer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201447#M1829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://forums.arcgis.com/attachment.php?attachmentid=12622&amp;amp;d=1331645245"&gt;&lt;IMG src="http://forums.arcgis.com/attachment.php?attachmentid=12622&amp;amp;d=1331645245&amp;amp;thumb=1" /&gt;&lt;/A&gt;&lt;SPAN&gt;If a post provides the answer to your question, then we encourage you to mark the post as "the answer" by activating the &lt;/SPAN&gt;&lt;SPAN style="color:#008000;"&gt;green check mark&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt; right of the post. You can also "vote" on posts that you find helpful by clicking the &lt;/SPAN&gt;&lt;SPAN style="color:#0000ff;"&gt;blue caret mark. &lt;/SPAN&gt;&lt;SPAN&gt;More information about the &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2012/03/04/the-new-arcgis-discussion-forums-mvp-program/#more-3997%20"&gt;ArcGIS Discussion Forums MVP Program&lt;/A&gt;&lt;SPAN&gt; found here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esri Support&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 12:29:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-do-labelling-with-agsuniquevaluerenderer/m-p/201447#M1829</guid>
      <dc:creator>DeniseKing</dc:creator>
      <dc:date>2012-03-13T12:29:16Z</dc:date>
    </item>
  </channel>
</rss>

