<?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 keep symbology outlines the same when I change the value field in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201859#M15539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe I'm missing something, but I don't see how that solution helps.&amp;nbsp; Suppose I have 50 fields in my data, and I want to create 50 jpegs using the same symbology for each field.&amp;nbsp; As you said, to use the ApplySymbologyFromLayer GP tool, the seed layer file must use a field that is named the same as the field in my data.&amp;nbsp; So I would need to make 50 seed layer files by hand, one for each field in my data, right?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Dec 2012 14:36:01 GMT</pubDate>
    <dc:creator>TimothyMcNeel</dc:creator>
    <dc:date>2012-12-10T14:36:01Z</dc:date>
    <item>
      <title>how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201854#M15534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm using graduated colors symbology with quantiles, and I have different fill colors and outline colors for the different quantile categories.&amp;nbsp; My python script loops through several fields, and for each field it sets the layer's symbology.valueField to the new field and creates a JPEG using arcpy.mapping.ExportToJPEG.&amp;nbsp; The quantiles recalculate correctly based on the new field, and the fill colors for each quantile group remain correct, but the outlines all change to gray.&amp;nbsp; How can I keep outlines the same (or reset them after they change) when I change the value field?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't see any way to to set the outline colors directly using Python.&amp;nbsp; I tried setting up a layer with the correct symbology and applying that (using arcpy.mapping.UpdateLayer and, in a separate attempt, arcpy.ApplySymbologyFromLayer_management) to my main layer after switching the value field.&amp;nbsp; But it appears that these functions set the symbology value field in addition to the fill colors and outlines.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using ArcGIS 10.1.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 12:24:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201854#M15534</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2012-12-03T12:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201855#M15535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, that's a bug (the bug tracking number is NIM085601). We have a targeted fix of SP2 (tentative date spring 2013). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Workarounds could get tricky for this issue. You can try using &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/UpdateLayer/00s30000003p000000/"&gt;arcpy.mapping.UpdateLayer&lt;/A&gt;&lt;SPAN&gt; with the symbology_only option set to True. You would have to have a staged .lyr file that contains the fields and symbology that you want. However, if the data is different, then the class breaks may not be what you expect - in which case you would call &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/GraduatedColorsSymbology/00s30000005z000000/"&gt;symbology.reclassify()&lt;/A&gt;&lt;SPAN&gt;. However, reclassify has the same bug in that it resets outline properties. In that case, you would NOT use reclassify() and instead determine the breaks and labels using some scripting logic and then apply those values to the renderer via .classBreakValues and .classBreakLabels.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 18:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201855#M15535</guid>
      <dc:creator>JeffMoulds</dc:creator>
      <dc:date>2012-12-03T18:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201856#M15536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff: Thanks for the response.&amp;nbsp; If I understand your workaround correctly, I would need to create a layer or MXD by hand for each of the fields I want to use and set up the symbology for each one.&amp;nbsp; That's the part I want to automate--I have dozens of fields.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried a new approach: changing the underlying data.&amp;nbsp; I set up a field named mainField and used that as the value field in the symbology.&amp;nbsp; Then in the Python script, for each of my other fields, I used arcpy.da.UpdateCursor to copy the values of the field into mainField and then I exported to JPEG.&amp;nbsp; The values of mainField get set correctly and the fill colors and outlines are right, but the class breaks are still based on the original values of mainField.&amp;nbsp; As you said, using symbology.reclassify causes the outlines to turn gray.&amp;nbsp; You mentioned using symbology.classBreakValues instead, but when I tried it, the outlines turned gray--am I missing something?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2012 14:00:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201856#M15536</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2012-12-04T14:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201857#M15537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It appears classBreakValues has the same issue of clearing the outlines. I'll look into another workaround...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 22:29:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201857#M15537</guid>
      <dc:creator>JeffMoulds</dc:creator>
      <dc:date>2012-12-06T22:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201858#M15538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I got this to work using the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000006n000000" rel="nofollow" target="_blank"&gt;ApplySymbologyFromLayer&lt;/A&gt;&lt;SPAN&gt; GP tool. You will need a seed layer file that contains the symbology and field that you want to symbolize with. However, the underlying data (and therefore the class break values) do not need to be the same. The GP tool will reclassify the class breaks after applying the seed layer. Here is some sample code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy mxd = arcpy.mapping.MapDocument(r"C:\backup\ValueField\ValueField.mxd") lyr = arcpy.mapping.ListLayers(mxd)[0] lyr.symbology.valueField = 'POP2000' arcpy.ApplySymbologyFromLayer_management(lyr, r"C:\backup\ValueField\ThickOutline.lyr") arcpy.mapping.ExportToPDF(mxd, 'foo.pdf') mxd.saveACopy(r"C:\backup\ValueField\foo.mxd") print 'done'&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 22:25:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201858#M15538</guid>
      <dc:creator>JeffMoulds</dc:creator>
      <dc:date>2012-12-07T22:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201859#M15539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe I'm missing something, but I don't see how that solution helps.&amp;nbsp; Suppose I have 50 fields in my data, and I want to create 50 jpegs using the same symbology for each field.&amp;nbsp; As you said, to use the ApplySymbologyFromLayer GP tool, the seed layer file must use a field that is named the same as the field in my data.&amp;nbsp; So I would need to make 50 seed layer files by hand, one for each field in my data, right?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2012 14:36:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201859#M15539</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2012-12-10T14:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201860#M15540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, if you have that many fields, then it may get to the point where its not worth it. This workaround would be better for workflows where you have 50 feature classes, all with the same field. Then only one seed file would be req'd. Unfortunately, I cant think of any other python workarounds.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2012 15:49:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201860#M15540</guid>
      <dc:creator>JeffMoulds</dc:creator>
      <dc:date>2012-12-10T15:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201861#M15541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff: I thought again about what you wrote about the ApplySymbologyFromLayer GP tool, and I realized that combining that with the method of changing the underlying data I mentioned earlier yields the solution I was looking for.&amp;nbsp; Thanks for the help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the whole approach, in case someone else wants to do the same thing before the bug gets fixed:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do the following by hand:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Set up two layers in the MXD, named mainLayer and donorLayer.&amp;nbsp; Each layer should have a field named mainField.&amp;nbsp; The layer named mainLayer should have the fields you want to use to create the JPEGs.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Set up the symbology in donorLayer, using mainField as the value field.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Make mainLayer visible and donorLayer invisible.&amp;nbsp; (Alternately, donorLayer could be a separate layer file or in a separate MXD.)&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;In the Python script, loop through each field you want to use, doing the following for each:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Use arcpy.da.UpdateCursor to copy the values of the field into mainField.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Use arcpy.ApplySymbologyFromLayer_management to copy the symbology from donorLayer to mainLayer.&amp;nbsp; The similar function arcpy.mapping.UpdateLayer does &lt;SPAN style="font-style:italic;"&gt;not&lt;/SPAN&gt; work here.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Use arcpy.mapping.ExportToJPEG to create the JPEG.&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2012 00:03:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201861#M15541</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2012-12-11T00:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201862#M15542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am having the same issue. Were you able to get around this issue? Can you please post the code with the workaround. I am still having issues with the symbology outlines. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Mar 2013 21:58:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201862#M15542</guid>
      <dc:creator>ShaneArmour</dc:creator>
      <dc:date>2013-03-22T21:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201863#M15543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am having the same issue. Were you able to get around this issue? Can you please post the code with the workaround. I am still having issues with the symbology outlines. &lt;BR /&gt;&lt;BR /&gt;Thank you in advance!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; Yes, I worked around it as I described in post #8 in this thread.&amp;nbsp; Did you follow those steps?&amp;nbsp; What part isn't working for you?&amp;nbsp; I'm reluctant to post the whole script (it's fairly complex).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Mar 2013 23:37:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201863#M15543</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2013-03-22T23:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201864#M15544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to make a map without borders. I am still having issues with the break values. Is there a way to keep updating the breakclasses and legend between ApplySymbologyFromLayer_management and the exporting process?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Mar 2013 00:39:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201864#M15544</guid>
      <dc:creator>ShaneArmour</dc:creator>
      <dc:date>2013-03-23T00:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201865#M15545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My script went immediately from arcpy.ApplySymbologyFromLayer_management to arcpy.mapping.ExportToJPEG with no intermediate steps.&amp;nbsp; Changing break values in between would probably cause the outlines to change.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Mar 2013 19:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201865#M15545</guid>
      <dc:creator>TimothyMcNeel</dc:creator>
      <dc:date>2013-03-23T19:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201866#M15546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Has this bug&amp;nbsp; (tracking number is NIM085601) actually been addressed in arc 10.2?&amp;nbsp;&amp;nbsp; I'm still&amp;nbsp; having the same problem using either 'ApplySymbologyFromLayer_management', 'UpdateLayer', or&amp;nbsp; 'classBreakvalues' .... my source .lyr is a polygon layer w/ graduated symbology and no outlines. When I apply its symbology to my 'update layer' I automatically get grey borders...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Travis Logan&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Unfortunately, that's a bug (the bug tracking number is NIM085601). We have a targeted fix of SP2 (tentative date spring 2013). &lt;BR /&gt;&lt;BR /&gt;Workarounds could get tricky for this issue. You can try using &lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/UpdateLayer/00s30000003p000000/"&gt;arcpy.mapping.UpdateLayer&lt;/A&gt; with the symbology_only option set to True. You would have to have a staged .lyr file that contains the fields and symbology that you want. However, if the data is different, then the class breaks may not be what you expect - in which case you would call &lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/GraduatedColorsSymbology/00s30000005z000000/"&gt;symbology.reclassify()&lt;/A&gt;. However, reclassify has the same bug in that it resets outline properties. In that case, you would NOT use reclassify() and instead determine the breaks and labels using some scripting logic and then apply those values to the renderer via .classBreakValues and .classBreakLabels.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 12:17:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201866#M15546</guid>
      <dc:creator>TravisLogan</dc:creator>
      <dc:date>2013-09-26T12:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201867#M15547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, this bug was addressed during a 10.1 SP.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just retested the original use cases and the original bug is still fixed.&amp;nbsp; It is possible you have a slightly different scenario.&amp;nbsp; Please contact support services so we can isolate and fix the issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Oct 2013 18:00:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201867#M15547</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2013-10-03T18:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201868#M15548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know this is an old thread, but its 2014 now and I am experiencing this exact issue, even after having 10.1 and sp1.&amp;nbsp; Is this going to get corrected in 10.2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 18:48:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201868#M15548</guid>
      <dc:creator>MattGray</dc:creator>
      <dc:date>2014-01-08T18:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201869#M15549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Send me a very simple map package with data and a simplified script the reproduces the problem and I'll verify.&amp;nbsp; The original data / script that was used to reproduce the original issue was not longer reproducible when the bug was "fixed".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Send map package / script to &lt;/SPAN&gt;&lt;A href="mailto:jbarrette@esri.com"&gt;jbarrette@esri.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 13:14:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201869#M15549</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2014-01-09T13:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201870#M15550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I could reproduce the issue.&amp;nbsp; That for a nicely organized package and script.&amp;nbsp; The original reported bug was resetting the outlines on the graduated color (symbology).&amp;nbsp; This scenario is a little different because it uses graduated symbol (size) but each color is also graduated (its sort of a combination of graduated color and graduated symbol).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are looking into providing a fix.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 20:27:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201870#M15550</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2014-01-09T20:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201871#M15551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A fix will be provided with ArcGIS 10.2.2.&amp;nbsp; If you are interested in tracking the issue, the tracking number is NIM098086.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 19:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201871#M15551</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2014-01-22T19:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep symbology outlines the same when I change the value field</title>
      <link>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201872#M15552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm still experiencing this problem after installing 10.2.2. Can you provide any update? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shane&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2014 18:39:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-keep-symbology-outlines-the-same-when-i/m-p/201872#M15552</guid>
      <dc:creator>ShaneArmour</dc:creator>
      <dc:date>2014-08-06T18:39:08Z</dc:date>
    </item>
  </channel>
</rss>

