<?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: Images chopped when using Class Breaks Renderer / picture-marker symbol in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1065718#M73423</link>
    <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;This issue will be fixed at JS API version 4.20 which will be released end of June 2021.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Undral&lt;/P&gt;</description>
    <pubDate>Mon, 07 Jun 2021 18:04:24 GMT</pubDate>
    <dc:creator>UndralBatsukh</dc:creator>
    <dc:date>2021-06-07T18:04:24Z</dc:date>
    <item>
      <title>Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1052876#M72809</link>
      <description>&lt;P&gt;Hi, I'm trying to display graphics on a client side feature layer using class-breaks renderer and picture-marker symbol. Symbols (or images) are getting chopped. Does anyone know why?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Following is the sample code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta charset="utf-8" /&amp;gt;&lt;BR /&gt;&amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Add or remove graphics from a FeatureLayer | Sample | ArcGIS API for JavaScript 4.19&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="&lt;A href="https://js.arcgis.com/4.19/esri/themes/light/main.css" target="_blank"&gt;https://js.arcgis.com/4.19/esri/themes/light/main.css&lt;/A&gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;script src="&lt;A href="https://community.esri.com/" target="_blank"&gt;https://js.arcgis.com/4.19/"&amp;gt;&amp;lt;/script&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;html,&lt;BR /&gt;body,&lt;BR /&gt;#viewDiv {&lt;BR /&gt;padding: 0;&lt;BR /&gt;margin: 0;&lt;BR /&gt;height: 100%;&lt;BR /&gt;width: 100%;&lt;BR /&gt;}&lt;BR /&gt;#add {&lt;BR /&gt;margin-bottom: 5px;&lt;BR /&gt;}&lt;BR /&gt;#actions {&lt;BR /&gt;padding: 5px;&lt;BR /&gt;}&lt;BR /&gt;button:disabled {&lt;BR /&gt;opacity: 0.4;&lt;BR /&gt;-moz-opacity: 0.4; /* Firefox and Mozilla browsers */&lt;BR /&gt;-webkit-opacity: 0.4; /* Safari */&lt;BR /&gt;cursor: default;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;require([&lt;BR /&gt;"esri/Map",&lt;BR /&gt;"esri/views/MapView",&lt;BR /&gt;"esri/Basemap",&lt;BR /&gt;"esri/layers/VectorTileLayer",&lt;BR /&gt;"esri/layers/FeatureLayer",&lt;BR /&gt;"esri/Graphic",&lt;BR /&gt;"esri/widgets/Legend"&lt;BR /&gt;], function(&lt;BR /&gt;Map,&lt;BR /&gt;MapView,&lt;BR /&gt;Basemap,&lt;BR /&gt;VectorTileLayer,&lt;BR /&gt;FeatureLayer,&lt;BR /&gt;Graphic,&lt;BR /&gt;Legend&lt;BR /&gt;) {&lt;BR /&gt;// create map using custom basemap from ArcGIS Online&lt;BR /&gt;const map = new Map({&lt;BR /&gt;basemap: new Basemap({&lt;BR /&gt;baseLayers: [&lt;BR /&gt;new VectorTileLayer({&lt;BR /&gt;portalItem: {id: "474f0cb226884dd68f707ab0f2f1aa10"}&lt;BR /&gt;})&lt;BR /&gt;],&lt;BR /&gt;referenceLayers: [&lt;BR /&gt;new VectorTileLayer({&lt;BR /&gt;portalItem: {id: "1768e8369a214dfab4e2167d5c5f2454"}&lt;BR /&gt;})&lt;BR /&gt;]&lt;BR /&gt;})&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;const view = new MapView({&lt;BR /&gt;container: "viewDiv",&lt;BR /&gt;map: map,&lt;BR /&gt;zoom: 3,&lt;BR /&gt;center: [-122.18, 37.49] // longitude, latitude&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;// create empty FeatureLayer&lt;BR /&gt;const monumentLayer = new FeatureLayer({&lt;BR /&gt;// create an instance of esri/layers/support/Field for each field object&lt;BR /&gt;title: "National Monuments",&lt;BR /&gt;fields: [&lt;BR /&gt;{&lt;BR /&gt;name: "ObjectID",&lt;BR /&gt;alias: "ObjectID",&lt;BR /&gt;type: "oid"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;name: "Name",&lt;BR /&gt;alias: "Name",&lt;BR /&gt;type: "string"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;name: "Type",&lt;BR /&gt;alias: "Type",&lt;BR /&gt;type: "string"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;name: "Count",&lt;BR /&gt;alias: "Count",&lt;BR /&gt;type: "integer"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;objectIdField: "ObjectID",&lt;BR /&gt;geometryType: "point",&lt;BR /&gt;spatialReference: { wkid: 4326 },&lt;BR /&gt;source: [], // adding an empty feature collection&lt;BR /&gt;renderer:&lt;BR /&gt;{&lt;BR /&gt;type: "class-breaks", // autocasts as new ClassBreaksRenderer()&lt;BR /&gt;field: "count",&lt;BR /&gt;// other properties set in step number 2&lt;BR /&gt;classBreakInfos: [&lt;BR /&gt;{&lt;BR /&gt;minValue: 0,&lt;BR /&gt;maxValue: 100,&lt;BR /&gt;symbol: {&lt;BR /&gt;type: "picture-marker", // autocasts as new SimpleFillSymbol()&lt;BR /&gt;url: "&lt;A href="https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png" target="_blank"&gt;https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png&lt;/A&gt;",&lt;BR /&gt;height: "30px",&lt;BR /&gt;width: "30px"&lt;BR /&gt;},&lt;BR /&gt;label: "&amp;lt; 35%" // label for symbol in legend&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;minValue: 101,&lt;BR /&gt;maxValue: 200,&lt;BR /&gt;symbol: {&lt;BR /&gt;type: "picture-marker", // autocasts as new SimpleFillSymbol()&lt;BR /&gt;url: "&lt;A href="https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png" target="_blank"&gt;https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png&lt;/A&gt;",&lt;BR /&gt;height: "40px",&lt;BR /&gt;width: "40px"&lt;BR /&gt;},&lt;BR /&gt;label: "35 - 50%" // label for symbol in legend&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;minValue: 201,&lt;BR /&gt;maxValue: 500,&lt;BR /&gt;symbol: {&lt;BR /&gt;type: "picture-marker", // autocasts as new SimpleFillSymbol()&lt;BR /&gt;url: "&lt;A href="https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png" target="_blank"&gt;https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png&lt;/A&gt;",&lt;BR /&gt;height: "50px",&lt;BR /&gt;width: "50px"&lt;BR /&gt;},&lt;BR /&gt;label: "50 - 75%" // label for symbol in legend&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;minValue: 501,&lt;BR /&gt;maxValue: 1000,&lt;BR /&gt;symbol: {&lt;BR /&gt;type: "picture-marker", // autocasts as new SimpleFillSymbol()&lt;BR /&gt;url: "&lt;A href="https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png" target="_blank"&gt;https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png&lt;/A&gt;",&lt;BR /&gt;height: "60px",&lt;BR /&gt;width: "60px"&lt;BR /&gt;},&lt;BR /&gt;label: "&amp;gt; 75%" // label for symbol in legend&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;,&lt;BR /&gt;popupTemplate: {&lt;BR /&gt;title: "{Name}:{Count}"&lt;BR /&gt;}&lt;BR /&gt;});&lt;BR /&gt;map.add(monumentLayer);&lt;/P&gt;&lt;P&gt;// add legend&lt;BR /&gt;const legend = new Legend({&lt;BR /&gt;view: view&lt;BR /&gt;});&lt;BR /&gt;view.ui.add(legend, "bottom-left");&lt;/P&gt;&lt;P&gt;// add buttons to the mapView&lt;BR /&gt;view.ui.add(document.getElementById("actions"), "top-right");&lt;/P&gt;&lt;P&gt;const addBtn = document.getElementById("add");&lt;BR /&gt;const removeBtn = document.getElementById("remove");&lt;/P&gt;&lt;P&gt;addBtn.addEventListener("click", addFeatures);&lt;BR /&gt;removeBtn.addEventListener("click", removeFeatures);&lt;/P&gt;&lt;P&gt;// check if features have already been added to determine disabled state of buttons&lt;BR /&gt;monumentLayer.queryFeatures().then(function(results){&lt;BR /&gt;if (results.features.length === 0){&lt;BR /&gt;addBtn.disabled = false;&lt;BR /&gt;removeBtn.disabled = true;&lt;BR /&gt;}&lt;BR /&gt;else {&lt;BR /&gt;addBtn.disabled = true;&lt;BR /&gt;removeBtn.disabled = false;&lt;BR /&gt;}&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;// fires when "Add Features" button is clicked&lt;BR /&gt;function addFeatures(){&lt;BR /&gt;// data to be added to the map&lt;BR /&gt;const data = [&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 32.6735,&lt;BR /&gt;LONGITUDE: -117.2425,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Cabrillo National Monument",&lt;BR /&gt;COUNT: 100&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 32.6935,&lt;BR /&gt;LONGITUDE: -117.2925,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Cabrillo National Monument",&lt;BR /&gt;COUNT: 110&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 35.2234,&lt;BR /&gt;LONGITUDE: -118.5590,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Cesar E. Chavez National Monument",&lt;BR /&gt;COUNT: 200&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 35.9234,&lt;BR /&gt;LONGITUDE: -118.9590,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Cesar E. Chavez National Monument",&lt;BR /&gt;COUNT: 200&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 37.6251,&lt;BR /&gt;LONGITUDE: -119.0850,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Devils Postpile National Monument",&lt;BR /&gt;COUNT: 300&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 35.2915,&lt;BR /&gt;LONGITUDE: -115.0935,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Castle Mountains National Monument",&lt;BR /&gt;COUNT: 400&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 41.7588,&lt;BR /&gt;LONGITUDE: -121.5267,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Lava Beds National Monument",&lt;BR /&gt;COUNT: 500&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 37.8970,&lt;BR /&gt;LONGITUDE: -122.5811,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Muir Woods National Monument",&lt;BR /&gt;COUNT: 600&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;LATITUDE: 41.8868,&lt;BR /&gt;LONGITUDE: -121.3717,&lt;BR /&gt;TYPE: "National Monument",&lt;BR /&gt;NAME: "Tule Lake National Monument",&lt;BR /&gt;COUNT: 700&lt;BR /&gt;}&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;// create an array of graphics based on the data above&lt;BR /&gt;var graphics = [];&lt;BR /&gt;var graphic;&lt;BR /&gt;for (var i=0; i&amp;lt;data.length; i++){&lt;BR /&gt;graphic = new Graphic({&lt;BR /&gt;geometry: {&lt;BR /&gt;type: "point",&lt;BR /&gt;latitude: data[i].LATITUDE,&lt;BR /&gt;longitude: data[i].LONGITUDE&lt;BR /&gt;},&lt;BR /&gt;attributes: data[i]&lt;BR /&gt;});&lt;BR /&gt;graphics.push(graphic);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// addEdits object tells applyEdits that you want to add the features&lt;BR /&gt;const addEdits = {&lt;BR /&gt;addFeatures: graphics&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;// apply the edits to the layer&lt;BR /&gt;applyEditsToLayer(addEdits);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// fires when "Remove Features" button clicked&lt;BR /&gt;function removeFeatures(){&lt;BR /&gt;// query for the features you want to remove&lt;BR /&gt;monumentLayer.queryFeatures().then(function(results){&lt;BR /&gt;// edits object tells apply edits that you want to delete the features&lt;BR /&gt;const deleteEdits = {&lt;BR /&gt;deleteFeatures: results.features&lt;BR /&gt;};&lt;BR /&gt;// apply edits to the layer&lt;BR /&gt;applyEditsToLayer(deleteEdits);&lt;BR /&gt;});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;function applyEditsToLayer(edits) {&lt;BR /&gt;monumentLayer&lt;BR /&gt;.applyEdits(edits)&lt;BR /&gt;.then(function(results) {&lt;BR /&gt;// if edits were removed&lt;BR /&gt;if (results.deleteFeatureResults.length &amp;gt; 0){&lt;BR /&gt;console.log(&lt;BR /&gt;results.deleteFeatureResults.length,&lt;BR /&gt;"features have been removed"&lt;BR /&gt;);&lt;BR /&gt;addBtn.disabled = false;&lt;BR /&gt;removeBtn.disabled = true;&lt;BR /&gt;}&lt;BR /&gt;// if features were added - call queryFeatures to return&lt;BR /&gt;// newly added graphics&lt;BR /&gt;if (results.addFeatureResults.length &amp;gt; 0){&lt;BR /&gt;var objectIds = [];&lt;BR /&gt;results.addFeatureResults.forEach(function(item) {&lt;BR /&gt;objectIds.push(item.objectId);&lt;BR /&gt;});&lt;BR /&gt;// query the newly added features from the layer&lt;BR /&gt;monumentLayer&lt;BR /&gt;.queryFeatures({&lt;BR /&gt;objectIds: objectIds&lt;BR /&gt;})&lt;BR /&gt;.then(function(results){&lt;BR /&gt;console.log(&lt;BR /&gt;results.features.length,&lt;BR /&gt;"features have been added."&lt;BR /&gt;);&lt;BR /&gt;addBtn.disabled = true;&lt;BR /&gt;removeBtn.disabled = false;&lt;BR /&gt;})&lt;BR /&gt;}&lt;BR /&gt;})&lt;BR /&gt;.catch(function(error) {&lt;BR /&gt;console.log(error);&lt;BR /&gt;});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div id="actions" class="esri-widget"&amp;gt;&lt;BR /&gt;&amp;lt;button class="esri-button" id="add"&amp;gt;Add 7 Features&amp;lt;/button&amp;gt;&lt;BR /&gt;&amp;lt;button class="esri-button" id="remove"&amp;gt;Remove 7 Features&amp;lt;/button&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 19:14:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1052876#M72809</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2021-04-29T19:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1054023#M72859</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/286992"&gt;@AmarG1&lt;/a&gt;, can you describe the issue in more detail? I ran your app in Codepen, and when I add the 9 features, they seem to display fine:&lt;/P&gt;&lt;P&gt;&lt;A href="https://codepen.io/noash/pen/LYxwKGP?editors=1000" target="_blank"&gt;https://codepen.io/noash/pen/LYxwKGP?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 22:33:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1054023#M72859</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2021-05-03T22:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1055182#M72956</link>
      <description>&lt;P&gt;Hi Noah,&amp;nbsp;Please look at the screenshot that I'm sharing. Topmost symbol is chopped initially but gets better after zoom-in/zoom-out. Screenshot is the output from your codepen sample.&lt;/P&gt;&lt;P&gt;This is the same issue as&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-api-for-javascript/featurelayer-symbol-cut-off-after-change-of-attribute/m-p/1024040#M71669" target="_blank"&gt;FeatureLayer symbol cut off after change of attrib... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AmarG1_0-1620306555426.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/12724iB7D37B648F364213/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AmarG1_0-1620306555426.png" alt="AmarG1_0-1620306555426.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 13:16:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1055182#M72956</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2021-05-06T13:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1055903#M73002</link>
      <description>&lt;P&gt;Ah ok Amar I can see it. Probably this is limited to applyEdits. Making an internal issue.&lt;/P&gt;</description>
      <pubDate>Fri, 07 May 2021 22:11:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1055903#M73002</guid>
      <dc:creator>mgeorge</dc:creator>
      <dc:date>2021-05-07T22:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056204#M73015</link>
      <description>&lt;P&gt;Thanks Noah!&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use this a lot.&lt;/P&gt;&lt;P&gt;When can we expect resolution to this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 14:01:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056204#M73015</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2021-05-10T14:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056299#M73019</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/286992"&gt;@AmarG1&lt;/a&gt;, give the credit to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/300815"&gt;@mgeorge&lt;/a&gt;. We hope to have this fixed at a future release, but will update this thread once we have more details to share.&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 16:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056299#M73019</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2021-05-10T16:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056805#M73046</link>
      <description>&lt;P&gt;Sure, thanks to &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/300815"&gt;@mgeorge&lt;/a&gt;!&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 18:14:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1056805#M73046</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2021-05-11T18:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1065718#M73423</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;This issue will be fixed at JS API version 4.20 which will be released end of June 2021.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Undral&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 18:04:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1065718#M73423</guid>
      <dc:creator>UndralBatsukh</dc:creator>
      <dc:date>2021-06-07T18:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1082877#M74021</link>
      <description>&lt;P&gt;I'm seeing a similar issue in 4.20, this time involving graphics symbolized with&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-TextSymbol.html" target="_self"&gt;TextSymbol&lt;/A&gt;&amp;nbsp;in a client-side &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html" target="_self"&gt;FeatureLayer&lt;/A&gt; getting clipped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="100%"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Label OK" style="width: 559px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19383i191630DF4CF18740/image-size/large?v=v2&amp;amp;px=999" role="button" title="label1.png" alt="Label OK" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Label OK&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="100%"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Label Clipped" style="width: 559px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19384i12E22FB3A41B7465/image-size/large?v=v2&amp;amp;px=999" role="button" title="label2.png" alt="Label Clipped" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Label Clipped&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can this be fixed in the next release?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 23:35:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1082877#M74021</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2021-07-26T23:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1087388#M74226</link>
      <description>&lt;P&gt;Is there a workaround or resolution to this in the upcoming 4.21?&lt;/P&gt;&lt;P&gt;We have discovered a related issue with 4.20 and CIMSymbols failing to render correctly, and parts of the symbol are chopped off.&lt;/P&gt;&lt;P&gt;This happens when rendered using a unique or SimpleRenderer:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://codepen.io/davidwilton/pen/YzVRoNj" target="_self"&gt;CodePen&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_0-1628581905400.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/20517i3656F57CFD16F478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_0-1628581905400.png" alt="SimonGIS_0-1628581905400.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 07:52:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1087388#M74226</guid>
      <dc:creator>SimonGIS</dc:creator>
      <dc:date>2021-08-10T07:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Images chopped when using Class Breaks Renderer / picture-marker symbol</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1113479#M75154</link>
      <description>&lt;P&gt;Update: this issue with TextSymbol graphics being clipped was fixed in 4.21.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 00:35:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/images-chopped-when-using-class-breaks-renderer/m-p/1113479#M75154</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2021-11-03T00:35:53Z</dc:date>
    </item>
  </channel>
</rss>

