<?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 Change Color and size of polygon vertex in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196391#M18176</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi want to change color and size of vertex of polygon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2020 04:03:06 GMT</pubDate>
    <dc:creator>rsharma</dc:creator>
    <dc:date>2020-03-17T04:03:06Z</dc:date>
    <item>
      <title>Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196391#M18176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi want to change color and size of vertex of polygon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2020 04:03:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196391#M18176</guid>
      <dc:creator>rsharma</dc:creator>
      <dc:date>2020-03-17T04:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196392#M18177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/393897"&gt;rajni sharma&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the same question as the one you posted last week, isn't it? &lt;A href="https://community.esri.com/thread/249609"&gt;Change Style of vertices points&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are referring to the vertices of polylines or polygons drawn with the &lt;STRONG&gt;Editor&lt;/STRONG&gt; widget, I guess? &lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-configurable/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-configurable/index.html"&gt;Editor widget with configurations | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hmmm. I suppose this color and size is defined somewhere deep down in the underlying CSS. Would not know how to change it. Sorry &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then, why would you want to change these? It is a nice piece of UI/UX, well designed and well implemented. I would leave it as-is if I were you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you will find an answer to your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Egge-Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:52:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196392#M18177</guid>
      <dc:creator>Egge-Jan_Pollé</dc:creator>
      <dc:date>2020-03-17T13:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196393#M18178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Egge,&lt;/P&gt;&lt;P&gt;Yes you are right i have already posted the same question twice but no answer received from anyone. I want to change the color and size because its the demand of my project.&lt;/P&gt;&lt;P&gt;I am not using any editor widget, instead i am creating my own symbol of polygon like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function createSymbol(color, style, width, outlineColor) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: "simple-fill",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style: style,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: color,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outline: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: outlineColor,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: width,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style: "dash"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }//End createSymbol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2020 04:16:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196393#M18178</guid>
      <dc:creator>rsharma</dc:creator>
      <dc:date>2020-03-18T04:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196394#M18179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rajni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;No one is answering because this is not something that you can do currently in the API. As Egge-Jan states the vertices symbol is controlled inside the API and no property is provided to change it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2020 12:22:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196394#M18179</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2020-03-18T12:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196395#M18180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok sir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2020 12:26:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/196395#M18180</guid>
      <dc:creator>rsharma</dc:creator>
      <dc:date>2020-03-18T12:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change Color and size of polygon vertex</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/1069674#M73530</link>
      <description>&lt;P&gt;Well that is just poor API design isn't it. What a joke.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 03:00:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-color-and-size-of-polygon-vertex/m-p/1069674#M73530</guid>
      <dc:creator>MarkoPolo</dc:creator>
      <dc:date>2021-06-18T03:00:44Z</dc:date>
    </item>
  </channel>
</rss>

