<?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: FeatureLayer Binning Symbology in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/featurelayer-binning-symbology/m-p/1245696#M63997</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As explained in ESRI documentation, only 'single symbol' or 'unclassed colors' symbologies are available for binnig enabled layer. If you wish to apply 'graduated colors', you can use 'Vary symbology by attribute' subtab and write a custom Arcade expression to derive the graduated colors based on an attribute.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/symbolize-binned-feature-layers.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/symbolize-binned-feature-layers.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For example, I wrote a simple if else Arcade statement to calculate "rgb(r, g, b)" text value used to draw the Solid Fill layer in the symbol. Here, if a total if greater or equal to 50, an "rgb(255,0,0)" red is output, else it is "rgb(255,255,0)" yellow, as shown in the square binning below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VincentLaunstorfer_0-1672938989111.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/59801iBD638C212B9F47D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VincentLaunstorfer_0-1672938989111.png" alt="VincentLaunstorfer_0-1672938989111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It works but I have to admit it is not easy concepts to use.&lt;/P&gt;&lt;P&gt;Recently, I had a similar issue recently and you can look at this post for exact instructions to use:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-0-2-how-to-apply-colormap-file-clr-to/m-p/1241589#M63474" target="_self"&gt;ArcGIS Pro 3.0.2 - How to apply colormap file .clr to feature class symbology?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jan 2023 17:33:50 GMT</pubDate>
    <dc:creator>VincentLaunstorfer</dc:creator>
    <dc:date>2023-01-05T17:33:50Z</dc:date>
    <item>
      <title>FeatureLayer Binning Symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/featurelayer-binning-symbology/m-p/1221026#M60948</link>
      <description>&lt;P&gt;Hi &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm having issues to customize the symbology of the FeatureLayer Bins in ArcGis Pro.&lt;/P&gt;&lt;P&gt;for some reason I have only two options to choose from, and the option that I want to use(Graduated Colors) does not appear on the option box.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Guy_srb_2-1665565484699.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53426i8091880BBB90AD9C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Guy_srb_2-1665565484699.png" alt="Guy_srb_2-1665565484699.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 09:06:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/featurelayer-binning-symbology/m-p/1221026#M60948</guid>
      <dc:creator>Guy_srb</dc:creator>
      <dc:date>2022-10-12T09:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureLayer Binning Symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/featurelayer-binning-symbology/m-p/1245696#M63997</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As explained in ESRI documentation, only 'single symbol' or 'unclassed colors' symbologies are available for binnig enabled layer. If you wish to apply 'graduated colors', you can use 'Vary symbology by attribute' subtab and write a custom Arcade expression to derive the graduated colors based on an attribute.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/symbolize-binned-feature-layers.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/symbolize-binned-feature-layers.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For example, I wrote a simple if else Arcade statement to calculate "rgb(r, g, b)" text value used to draw the Solid Fill layer in the symbol. Here, if a total if greater or equal to 50, an "rgb(255,0,0)" red is output, else it is "rgb(255,255,0)" yellow, as shown in the square binning below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VincentLaunstorfer_0-1672938989111.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/59801iBD638C212B9F47D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VincentLaunstorfer_0-1672938989111.png" alt="VincentLaunstorfer_0-1672938989111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It works but I have to admit it is not easy concepts to use.&lt;/P&gt;&lt;P&gt;Recently, I had a similar issue recently and you can look at this post for exact instructions to use:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-3-0-2-how-to-apply-colormap-file-clr-to/m-p/1241589#M63474" target="_self"&gt;ArcGIS Pro 3.0.2 - How to apply colormap file .clr to feature class symbology?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:33:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/featurelayer-binning-symbology/m-p/1245696#M63997</guid>
      <dc:creator>VincentLaunstorfer</dc:creator>
      <dc:date>2023-01-05T17:33:50Z</dc:date>
    </item>
  </channel>
</rss>

