<?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: Error changing the outline color for symbology rendering in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212734#M65572</link>
    <description>&lt;P&gt;Thanks for your reply. I tried changing the symbology outline to different colors and played with the opacity, which is the last number of the RGB (e.g.&amp;nbsp;brk.symbol.outlineColor = {'RGB' : [0, 0, 0, 100]}), but it doesn't seem to make a difference. The symbology outline remains a constant black color. I am not sure why. I know the syntax is correct...&lt;/P&gt;</description>
    <pubDate>Wed, 14 Sep 2022 22:42:15 GMT</pubDate>
    <dc:creator>ThiPham12</dc:creator>
    <dc:date>2022-09-14T22:42:15Z</dc:date>
    <item>
      <title>Error changing the outline color for symbology rendering</title>
      <link>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212117#M65547</link>
      <description>&lt;P&gt;I am not sure why when I try to change my symbology outline color, it would change the symbology color, instead of the outline color. Is there something wrong with my script? Thanks for your help!&lt;/P&gt;&lt;P&gt;if sym.renderer.type == 'SimpleRenderer':&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sym.updateRenderer('GraduatedColorsRenderer')&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sym.renderer.classificationField = Comp_Field&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sym.renderer.breakCount = 7&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sym.renderer.colorRamp = p.listColorRamps('Green_Blue_3')[0]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;for brk in sym.renderer.classBreaks:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; brk.symbol.size = 6&lt;BR /&gt;&amp;nbsp; &amp;nbsp; brk.symbol.outlineColor = {'RGB':[0,0,0,0]}&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 18:42:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212117#M65547</guid>
      <dc:creator>ThiPham12</dc:creator>
      <dc:date>2022-09-13T18:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error changing the outline color for symbology rendering</title>
      <link>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212125#M65548</link>
      <description>&lt;P&gt;I think that RGBA value would result in black that is fully transparent, so you wouldn't see it.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RGBA color values are an extension of RGB color values with an alpha channel - which specifies the opacity for a color. An RGBA color value is specified with: rgba(red, green, blue, alpha). The alpha parameter is&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;a number between 0.0 (fully transparent) and 1.0 (fully opaque)&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 18:54:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212125#M65548</guid>
      <dc:creator>dgiersz_cuyahoga</dc:creator>
      <dc:date>2022-09-13T18:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error changing the outline color for symbology rendering</title>
      <link>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212734#M65572</link>
      <description>&lt;P&gt;Thanks for your reply. I tried changing the symbology outline to different colors and played with the opacity, which is the last number of the RGB (e.g.&amp;nbsp;brk.symbol.outlineColor = {'RGB' : [0, 0, 0, 100]}), but it doesn't seem to make a difference. The symbology outline remains a constant black color. I am not sure why. I know the syntax is correct...&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 22:42:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1212734#M65572</guid>
      <dc:creator>ThiPham12</dc:creator>
      <dc:date>2022-09-14T22:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error changing the outline color for symbology rendering</title>
      <link>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1217115#M65709</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/414954"&gt;@dgiersz_cuyahoga&lt;/a&gt;&amp;nbsp;Yes, you are right. However, the outline color still shows black, regardless of the RGB and opaque number. For example:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;brk.symbol.outlineColor = {'RGB':[0,0,0,0]}&amp;nbsp; &amp;nbsp;# outline color = black (should be clear)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;brk.symbol.outlineColor = {'RGB':[0,0,0,100]} #outline color = black (correct outline color)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;brk.symbol.outlineColor = {'RGB':[255,255,0,]} #outline color = black (should be red)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am starting to wonder if this is a ArcGIS Pro issue...&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 19:34:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-changing-the-outline-color-for-symbology/m-p/1217115#M65709</guid>
      <dc:creator>ThiPham12</dc:creator>
      <dc:date>2022-09-28T19:34:38Z</dc:date>
    </item>
  </channel>
</rss>

