<?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: ArcGIS Online Label placement using Arcade language in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334185#M2140</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Kristian! &amp;nbsp;One more request. &amp;nbsp;Do you know the&amp;nbsp;code to tell certain labels to show up to the left of a point, certain labels to the right, etc? &amp;nbsp;I noticed on one of the documentation pages there was something called “labelplacement”, but I’m not sure if this is code that can be used in ArcGIS Online or not. &amp;nbsp;If you know, then that would solve my last problem! &amp;nbsp;Otherwise, I was just going to duplicate the Master Facility layer, and create duplicative&amp;nbsp;layers called “Master Facility – Left Labels”, “Master Facility – Right labels” etc. &amp;nbsp;And then hide those duplicative layers in the Web App Builder and from the Legend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again for your help!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Mar 2017 21:56:27 GMT</pubDate>
    <dc:creator>JasonSmith6</dc:creator>
    <dc:date>2017-03-16T21:56:27Z</dc:date>
    <item>
      <title>ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334174#M2129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any syntax in the new Arcade language that can but used with labels in AGO that will tell certain features to label to the left, certain features to label to the right, etc? &amp;nbsp;The problem I'm having is I&amp;nbsp;have several facilities that are congregated in a particular area pretty tightly, and it would help to place some of the labels in different positions around their corresponding feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Up until now the only way I've been able to get around this is to create duplicate layers, and label each one "Facilities - Left Labels", "Facilities - Right Labels", etc. &amp;nbsp;But I'd rather not do this if I could write the code a certain way within just one feature layer. &amp;nbsp;Here's the code I've got so far that only shows certain labels for features in a layer (thanks to Kelly Gerrow @ ESRI):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ($feature.Facility_short == “Green River Plant”) {return “Green River Plant”}&lt;BR /&gt;else if ($feature.Facility_short == “Red Creek Mine”) {return “Red Creek Mine” }&lt;BR /&gt;else if ($feature.Facility_short == “Blue Mountain Refinery”) {return “Blue Mountain Refinery” }&lt;BR /&gt;else if ($feature.Facility_short == “Yellow Enterprises”{return “Yellow Enterprises” }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for any help you can provide!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 14:51:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334174#M2129</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-01T14:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334175#M2130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have an answer to your positioning question, but you can simplify your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; “Green River Plant” &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; “Red Creek Mine” &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; “Blue Mountain Refinery” &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; “Yellow Enterprises”&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Too bad Arcade doesn't seem to support "in" &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:49:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334175#M2130</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2021-12-11T15:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334176#M2131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/kenbuja"&gt;kenbuja&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;I agree on the "in" front! &amp;nbsp;And thank you for the shortened code! &amp;nbsp;There's just not a lot documentation out there. &amp;nbsp;Just curious, what does the " | |" stand for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 16:21:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334176#M2131</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-01T16:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334177#M2132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's the "Logical or" operator. Here's a full list of the available operators: &lt;A class="link-titled" href="https://developers.arcgis.com/arcade/guide/logic/#operators" title="https://developers.arcgis.com/arcade/guide/logic/#operators"&gt;Logic | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 16:32:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334177#M2132</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2017-03-01T16:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334178#M2133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/kenbuja"&gt;kenbuja&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;Thank you again! &amp;nbsp;So I assume you can use this || for as many OR statements as you want? &amp;nbsp;The documentation says one of two, but obviously this code example above shows we can do more than 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 16:44:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334178#M2133</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-01T16:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334179#M2134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you should be able to put as many in as you like. For example, this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ($feature.Habitat == "HARD" ||&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $feature.Habitat == "AGRF" ||&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $feature.Habitat == "SCR") {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return $feature.Habitat&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yields this map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="332278" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/332278_arcade.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 17:12:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334179#M2134</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2017-03-01T17:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334180#M2135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This stuff is nice. What I'm wondering is where you are using this code, in the symbology, labels? &amp;nbsp;I would like to use this in AGOL maps, but am not clear how to go about actually doing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to hijack the post with another question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 18:29:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334180#M2135</guid>
      <dc:creator>MichaelMiller2</dc:creator>
      <dc:date>2017-03-01T18:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334181#M2136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/kenbuja"&gt;kenbuja&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;FANTASTIC !!!! &amp;nbsp;You have been such a valuable resource! &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 18:37:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334181#M2136</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-01T18:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334182#M2137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/22199"&gt;Michael Miller&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;No problem at all! &amp;nbsp;I'm using this code in the Labels. &amp;nbsp;When you Manage Labels, you choose "Custom (Expression)" from the drop-down menu for Text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's another good resource I was forwarded to:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; color: #1f497d;"&gt;&lt;A href="https://developers.arcgis.com/arcade/guide/logic/#if-statements"&gt;&lt;SPAN style="color: #1f497d; text-decoration: none;"&gt;https://developers.arcgis.com/arcade/guide/logic/#if-statements&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any other questions and I'll try to tell you what I've learned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 18:41:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334182#M2137</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-01T18:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334183#M2138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jason!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2017 19:07:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334183#M2138</guid>
      <dc:creator>MichaelMiller2</dc:creator>
      <dc:date>2017-03-01T19:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334184#M2139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry. Syntax error. Here's the corrected version of an alternate approach somewhat similar to IN:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; items &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt; “Green River Plant”&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; “Red Creek Mine”&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; “Blue Mountain Refinery”&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; “Yellow Enterprises” &lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
IIF &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;IndexOf&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;items&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Facility_short&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;null&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:49:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334184#M2139</guid>
      <dc:creator>KristianEkenes</dc:creator>
      <dc:date>2021-12-11T15:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334185#M2140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Kristian! &amp;nbsp;One more request. &amp;nbsp;Do you know the&amp;nbsp;code to tell certain labels to show up to the left of a point, certain labels to the right, etc? &amp;nbsp;I noticed on one of the documentation pages there was something called “labelplacement”, but I’m not sure if this is code that can be used in ArcGIS Online or not. &amp;nbsp;If you know, then that would solve my last problem! &amp;nbsp;Otherwise, I was just going to duplicate the Master Facility layer, and create duplicative&amp;nbsp;layers called “Master Facility – Left Labels”, “Master Facility – Right labels” etc. &amp;nbsp;And then hide those duplicative layers in the Web App Builder and from the Legend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again for your help!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2017 21:56:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334185#M2140</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-16T21:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334186#M2141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't believe you can configure&amp;nbsp;label placement using Arcade syntax (yet). I just use label classes to handle placement as this sample demonstrates:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jssamples/labels_arcade.html" title="https://developers.arcgis.com/javascript/3/jssamples/labels_arcade.html"&gt;Label features using Arcade expressions | ArcGIS API for JavaScript 3.20&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that ArcGIS Online only supports adding one label class per layer. I'm not sure if support for adding more will be added in the future, but in the mean time I would configure this in the custom app or template. Otherwise you can also use the approach you described. Hope that helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2017 23:29:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334186#M2141</guid>
      <dc:creator>KristianEkenes</dc:creator>
      <dc:date>2017-03-16T23:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334187#M2142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kristian, thanks so much again! &amp;nbsp;Yes I figured it was probably an issue with the version of JavaScript ArcGIS Online uses. &amp;nbsp;Hopefully they will add support for labelplacement syntax in a future update. &amp;nbsp;For now, I'll just to have to stick with my multi-layer solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2017 14:16:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334187#M2142</guid>
      <dc:creator>JasonSmith6</dc:creator>
      <dc:date>2017-03-20T14:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334188#M2143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you use TextFormatting.Newline? &amp;nbsp;Attempting to use this in Labels and it is not honoring the newline.&lt;/P&gt;&lt;P&gt;Using:&lt;/P&gt;&lt;P&gt;$feature.Sta_Num + TextFormatting.NewLine + $feature.Sta_Name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Apr 2017 16:17:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334188#M2143</guid>
      <dc:creator>MichaelMiller2</dc:creator>
      <dc:date>2017-04-07T16:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334189#M2144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Newline doesn't work right now. Take a look at this discussion: &lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/message/658173-re-arcade-text-constant-for-textformattingnewline-is-adding-space-instead-of-new-line?commentID=658173#comment-658173" title="https://community.esri.com/message/658173-re-arcade-text-constant-for-textformattingnewline-is-adding-space-instead-of-new-line?commentID=658173#comment-658173"&gt;https://community.esri.com/message/658173-re-arcade-text-constant-for-textformattingnewline-is-adding-space-instead-of-new-…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Apr 2017 16:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334189#M2144</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2017-04-07T16:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334190#M2145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the headsup &lt;A href="https://community.esri.com/people/kenbuja"&gt;kenbuja&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Apr 2017 16:54:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334190#M2145</guid>
      <dc:creator>MichaelMiller2</dc:creator>
      <dc:date>2017-04-07T16:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Online Label placement using Arcade language</title>
      <link>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334191#M2146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know this post doesn't exactly cover my question but it does have to do with labeling. I have a point feature class for tax map annotation, with a text string and an angle field. I am trying to get that to label properly using the arcade custom expression. I can't seem to find anything telling me how to do this, although I do see several references which state that this can be used for label rotation display. Help, please!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2017 17:58:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/arcgis-online-label-placement-using-arcade/m-p/334191#M2146</guid>
      <dc:creator>JenniferStone</dc:creator>
      <dc:date>2017-04-25T17:58:01Z</dc:date>
    </item>
  </channel>
</rss>

