<?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: Is it possible to have the &amp;quot;label&amp;quot; size change with the polygon size? in ArcGIS Mapping and Charting Questions</title>
    <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480241#M1656</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use &lt;A href="http://desktop.arcgis.com/en/desktop/latest/map/working-with-text/displaying-labels-using-label-classes-to-label-fea.htm" title="http://desktop.arcgis.com/en/desktop/latest/map/working-with-text/displaying-labels-using-label-classes-to-label-fea.htm"&gt;Using label classes to label features from the same layer differently—Help | ArcGIS for Desktop&lt;/A&gt; to label them differently based on a field. Maybe area field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jan 2016 19:21:10 GMT</pubDate>
    <dc:creator>WesMiller</dc:creator>
    <dc:date>2016-01-21T19:21:10Z</dc:date>
    <item>
      <title>Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480240#M1655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a topo map with various polygons representing lakes.&amp;nbsp; The label applied from the name field of the attribute table is the same size for each lake whether the lake is huge or tiny.&amp;nbsp; Is it possible to make the label automatically change size to match the polygon?&amp;nbsp; Maybe the label could be a percentage of the polygon size?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2016 17:28:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480240#M1655</guid>
      <dc:creator>RickCheney</dc:creator>
      <dc:date>2016-01-21T17:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480241#M1656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use &lt;A href="http://desktop.arcgis.com/en/desktop/latest/map/working-with-text/displaying-labels-using-label-classes-to-label-fea.htm" title="http://desktop.arcgis.com/en/desktop/latest/map/working-with-text/displaying-labels-using-label-classes-to-label-fea.htm"&gt;Using label classes to label features from the same layer differently—Help | ArcGIS for Desktop&lt;/A&gt; to label them differently based on a field. Maybe area field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2016 19:21:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480241#M1656</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2016-01-21T19:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480242#M1657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Wes.&amp;nbsp;&amp;nbsp; As a test, I set the labels for the Lakes as&amp;nbsp; Label all features the same way, the I added the expression below.&amp;nbsp; The expression verifies as ok, but nothing happens.&amp;nbsp; I have a Field named PARENTID and the data type is Long.&amp;nbsp; All the PARENTID fields in the attribute table have a value of 0 (zero).&amp;nbsp; I tried the expression without the cLng, like this&lt;/P&gt;&lt;P&gt;" if ([PARENTID] = 0) then"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; but that didn't help either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function FindLabel ( [PARENTID] )&lt;/P&gt;&lt;P&gt;if (cLng([PARENTID]) = 0) then&lt;/P&gt;&lt;P&gt;FindLabel = "&amp;lt;CLR red='255'&amp;gt;&amp;lt;FNT size = '44'&amp;gt;" + [OFFICIAL_N] + "&amp;lt;/FNT&amp;gt;&amp;lt;/CLR&amp;gt;"&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=== below does work ===&lt;/P&gt;&lt;P&gt;Function FindLabel ( [OFFICIAL_N] )&lt;/P&gt;&lt;P&gt;if [OFFICIAL_N] = "Bee Lake" then&lt;/P&gt;&lt;P&gt;FindLabel = "&amp;lt;CLR red='255'&amp;gt;&amp;lt;FNT size = '44'&amp;gt;" + [OFFICIAL_N] + "&amp;lt;/FNT&amp;gt;&amp;lt;/CLR&amp;gt;"&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2016 21:35:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480242#M1657</guid>
      <dc:creator>RickCheney</dc:creator>
      <dc:date>2016-01-21T21:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480243#M1658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See diagram&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/171669_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2016 21:57:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480243#M1658</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2016-01-21T21:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480244#M1659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this by setting the label font size to the largest desired size, specifying "Reduce font size", and deselect "Overrun feature".&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/171723_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/171724_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2016 22:29:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480244#M1659</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-01-21T22:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480245#M1660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use this method when I display large amounts of parcels as well.&amp;nbsp; Remember you have to use the Maplex Labeling Engine to use these tools.&amp;nbsp; Also, this will slow down your labeling and display, because of the crunching to fit the labels.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jan 2016 04:32:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480245#M1660</guid>
      <dc:creator>ChadKopplin</dc:creator>
      <dc:date>2016-01-22T04:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have the "label" size change with the polygon size?</title>
      <link>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480246#M1661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the Reduce font size option in the Maplex Labeling Engine and the results are exactly what I need.&amp;nbsp; This saved me from individually making custom labels for hundreds of lakes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is it possible to mark more than one answer as the correct answer?&amp;nbsp; &lt;/STRONG&gt;All three answers were very helpful.&amp;nbsp; I will use the Define Classses feature to write Expressions for custom labels when I need that.&amp;nbsp; I was not aware that I could use Expressions like that.&lt;/P&gt;&lt;P&gt;The Reduce font size option was perfect but I did not know that the Maplex Labeling Engine existed so I would have had a hard time figuring that out until Chad mentioned Maplex and then I found it.&amp;nbsp; In ArcMap 10.3.1 I found it under the drop-down menus along the top, Customize &amp;gt;&amp;gt; Toolbars &amp;gt;&amp;gt; Labeling&amp;nbsp; then under the Labeling drop-down on the left side of the Labeling toolbar, pick Use Maplex Label Engine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all, you saved me a lot of time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jan 2016 16:17:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-mapping-and-charting-questions/is-it-possible-to-have-the-quot-label-quot-size/m-p/480246#M1661</guid>
      <dc:creator>RickCheney</dc:creator>
      <dc:date>2016-01-22T16:17:48Z</dc:date>
    </item>
  </channel>
</rss>

