<?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 rewrite the minimum value of a symbol class in Arcpy? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1387224#M69965</link>
    <description>&lt;P&gt;I'd like to confirm, does your current script follow this documentation&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/3.1/arcpy/mapping/rasterclassbreak-class.htm" target="_blank"&gt;RasterClassBreak—ArcGIS Pro | Documentation&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my understanding of that documentation to change the value you must access it in arcpy.mp module. Go to the map, then to the layer. Next you can change the minimum value with its class break by looping it.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;breakVal = 50
cv = 0
for brk in sym.colorizer.classBreaks:
    brk.upperBound = breakVal
    brk.label = "\u2264" + str(locale.format("%d", breakVal, grouping=True))
    brk.description = "Description " + str(cv)
    brk.color = {'HSV' : [cv, cv, cv, 100]}

    breakVal +=50
    cv += 40&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I just found this documentation recently. Hope it helps to address your issue. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Feb 2024 06:44:53 GMT</pubDate>
    <dc:creator>AlexanderDanielPratama</dc:creator>
    <dc:date>2024-02-27T06:44:53Z</dc:date>
    <item>
      <title>How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1375802#M69750</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;The image is from the "&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/histograms.htm" target="_self"&gt;Use symbology histograms&lt;/A&gt;" page.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;How can I rewrite the value in the red circle with Arcpy?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="GUID-2D15D045-D899-4C5D-9D21-CC971290C9C6-web.png" style="width: 273px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93157i43FD86539F0CAC80/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GUID-2D15D045-D899-4C5D-9D21-CC971290C9C6-web.png" alt="GUID-2D15D045-D899-4C5D-9D21-CC971290C9C6-web.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 05:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1375802#M69750</guid>
      <dc:creator>-_-</dc:creator>
      <dc:date>2024-01-30T05:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1385954#M69938</link>
      <description>&lt;P&gt;From my experience, you cannot change the minimum value by arcpy. Neither are the other values of the histogram. If your aim is automation, you need a strategy for the output at least similar and you can apply the symbology using symbology tools or symbology parameters in the Script tool.&lt;/P&gt;&lt;P&gt;Hopefully it can help you.&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 12:33:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1385954#M69938</guid>
      <dc:creator>AlexanderDanielPratama</dc:creator>
      <dc:date>2024-02-23T12:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1387220#M69964</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;In ArcMap, by rewriting the classBreakValues property of the GraduatedSymbolsSymbology class with a list, it was possible to make the first number the minimum value.&lt;BR /&gt;When using Apply Synbology From Layer, if there are features that are less than the minimum value of the original layer, they will not be displayed.&lt;BR /&gt;I was using a script that rewrites the minimum value to -1000000000 and the maximum value to 1000000000 so that it can be applied to a general range.&lt;/P&gt;&lt;P&gt;I would like to create a similar script in ArcGIS PRO.&lt;BR /&gt;Do you have any ideas for alternatives?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 06:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1387220#M69964</guid>
      <dc:creator>-_-</dc:creator>
      <dc:date>2024-02-27T06:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1387224#M69965</link>
      <description>&lt;P&gt;I'd like to confirm, does your current script follow this documentation&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/3.1/arcpy/mapping/rasterclassbreak-class.htm" target="_blank"&gt;RasterClassBreak—ArcGIS Pro | Documentation&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my understanding of that documentation to change the value you must access it in arcpy.mp module. Go to the map, then to the layer. Next you can change the minimum value with its class break by looping it.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;breakVal = 50
cv = 0
for brk in sym.colorizer.classBreaks:
    brk.upperBound = breakVal
    brk.label = "\u2264" + str(locale.format("%d", breakVal, grouping=True))
    brk.description = "Description " + str(cv)
    brk.color = {'HSV' : [cv, cv, cv, 100]}

    breakVal +=50
    cv += 40&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I just found this documentation recently. Hope it helps to address your issue. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 06:44:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1387224#M69965</guid>
      <dc:creator>AlexanderDanielPratama</dc:creator>
      <dc:date>2024-02-27T06:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1388527#M69995</link>
      <description>&lt;P&gt;The current script follows the ClassBreak documentation for GraduatedColorsRenderer. (Very similar to the document you provided)&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/ja/pro-app/latest/arcpy/mapping/graduatedcolorsrenderer-class.htm" target="_blank"&gt;https://pro.arcgis.com/ja/pro-app/latest/arcpy/mapping/graduatedcolorsrenderer-class.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/ja/pro-app/latest/arcpy/mapping/classbreak-class.htm" target="_blank"&gt;https://pro.arcgis.com/ja/pro-app/latest/arcpy/mapping/classbreak-class.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The upperBound property can only be rewritten to the upper limit of the range. Therefore, in the range "0-10", if ClassBreak.upperBound is rewritten to "20", it becomes "0-20", so I am looking for a way to rewrite "0".&lt;BR /&gt;thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 05:21:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1388527#M69995</guid>
      <dc:creator>-_-</dc:creator>
      <dc:date>2024-02-29T05:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to rewrite the minimum value of a symbol class in Arcpy?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1409602#M70306</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/setting-the-lower-limit-of-graduated-color-symbols/idc-p/1409600#M29374" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-ideas/setting-the-lower-limit-of-graduated-color-symbols/idc-p/1409600&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this article, I learned how to use python CIM access, so I would like to share it with you.&lt;BR /&gt;I hope this helps someone who is struggling with the same issue.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 05:55:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-rewrite-the-minimum-value-of-a-symbol-class/m-p/1409602#M70306</guid>
      <dc:creator>-_-</dc:creator>
      <dc:date>2024-04-15T05:55:18Z</dc:date>
    </item>
  </channel>
</rss>

