<?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: Printing a legend for a dynamically rendered dynamic layer in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600166#M56119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try using the PrintTask.&amp;nbsp; You can find info on it here: &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/printtask-amd.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/printtask-amd.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It takes a URL and a PrintParameters object as its params.&amp;nbsp; Inside the PrintParameters object you can pass in a PrintTemplate object which can use all the default values and then you can pass inside the layoutOptions, an array of legend layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The legend Layers need to be legend layer objects and not an array of layer ids, something like here: &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/legendlayer-amd.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/legendlayer-amd.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will need to create a new legend layer object, give it a layerId and sublayer ids and then push that into the array of legend layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a small snippet from one of my apps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
if (optionalLayer.visible) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer = new esri.tasks.LegendLayer();
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer.layerId = optionalLayer.id;
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer.subLayerIds = optionalLayer.visibleLayers;
&amp;nbsp;&amp;nbsp;&amp;nbsp; options.legendLayers.push(legendLayer);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you pass in the legend layer info correctly the print task should be able to pull in custom symbology for your layer from the renderer, you should actually be able to see it in your outgoing request JSON.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 01:44:52 GMT</pubDate>
    <dc:creator>RobertWinterbottom</dc:creator>
    <dc:date>2021-12-12T01:44:52Z</dc:date>
    <item>
      <title>Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600165#M56118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm afraid I'm attempting another impossible task. I'm using class break and unique value renderers to allow the user to choose which attribute of a dynamic layer is used as the basis for their map. This works great in the browser, and also makes nice print maps, but I can't get the legend info into the resulting PDF map. Is there any way to pass the resulting legend to the Print dijit when using the esri.request approach? Any other options?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 01:40:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600165#M56118</guid>
      <dc:creator>MalcolmWilliamson</dc:creator>
      <dc:date>2014-01-27T01:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600166#M56119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try using the PrintTask.&amp;nbsp; You can find info on it here: &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/printtask-amd.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/printtask-amd.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It takes a URL and a PrintParameters object as its params.&amp;nbsp; Inside the PrintParameters object you can pass in a PrintTemplate object which can use all the default values and then you can pass inside the layoutOptions, an array of legend layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The legend Layers need to be legend layer objects and not an array of layer ids, something like here: &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/legendlayer-amd.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/jsapi/legendlayer-amd.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will need to create a new legend layer object, give it a layerId and sublayer ids and then push that into the array of legend layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a small snippet from one of my apps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
if (optionalLayer.visible) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer = new esri.tasks.LegendLayer();
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer.layerId = optionalLayer.id;
&amp;nbsp;&amp;nbsp;&amp;nbsp; legendLayer.subLayerIds = optionalLayer.visibleLayers;
&amp;nbsp;&amp;nbsp;&amp;nbsp; options.legendLayers.push(legendLayer);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you pass in the legend layer info correctly the print task should be able to pull in custom symbology for your layer from the renderer, you should actually be able to see it in your outgoing request JSON.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:44:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600166#M56119</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2021-12-12T01:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600168#M56121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hmmm, everything in the request looks ok and it even looks like all the rendering info is being passed in. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would you be able to put up a sample in JSFiddle if its not too much that I could look it.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was looking for some code samples on my mac and I realized on one of the apps, we have a custom image service layer and that we had to do a sort of trick to get a legend to appear where we put a dummy layer in a map service with a mock legend to represent the image service layer.&amp;nbsp; All other apps I have built and are using print are using default symbology except for one which is showing full page map only with no legend, I know we have one or two at work built by some of my colleagues that have print functionality with custom renderers so I will check on them when I get in tomorrow to see if they are showing legends or if I can tweak the one I have to add a legend to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't think this is impossible, if I recall correctly we have done it at our office in one of our apps but I will have to get back to you on that, been in school all day so my mind is not on GIS at the moment, maybe someone from Esri in the meantime can comment on this to maybe point out something I'm forgetting or point us to a sample.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 19:49:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600168#M56121</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2014-01-28T19:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600169#M56122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, my first attempt at migrating an entire app to JSFiddle. This looks pretty ugly when crammed into the Results window, but it seems to work (other than the problem with the legend in the "printed" PDF!):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/d5b65/"&gt;http://jsfiddle.net/d5b65/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Normally, one of 62 different layers in the service is passed through the URL (...?layer=32), but I hard-coded this in the fiddle.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm pretty new to the javascript API, so I'm sure you'll see all kinds of atrocious code in there - don't worry, you won't offend me! If you can help me overcome this, I'll be very grateful.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 01:42:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600169#M56122</guid>
      <dc:creator>MalcolmWilliamson</dc:creator>
      <dc:date>2014-01-29T01:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600170#M56123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think the problem here are the default print templates. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The legend is placed in the bottom of the page leaving very small room for the legend info. If a layer has too many symbols it will simply not be displayed in the legend. To check this, load just one or two layers in your app rendered with a simple renderer. You should see the layers info in the bottom left side of the page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The solution is simple. Edit the default print templates and place the legend elment somewhere else leaving more space for the layer info. And also check that "Shrink contents to fit frame" option to make the layer info fit the legend element (you'll find it in the Fitting strategy section inside the legend properties,&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/00s9/GUID-CE99B836-8EB9-4EAA-BB8F-6F0385EBDB00-web.png"&gt;here&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 05:53:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600170#M56123</guid>
      <dc:creator>AleydisG__Pere</dc:creator>
      <dc:date>2014-01-29T05:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600171#M56124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I think the problem here are the default print templates. &lt;BR /&gt;The legend is placed in the bottom of the page leaving very small room for the legend info. If a layer has too many symbols it will simply not be displayed in the legend. To check this, load just one or two layers in your app rendered with a simple renderer. You should see the layers info in the bottom left side of the page.&lt;BR /&gt;The solution is simple. Edit the default print templates and place the legend elment somewhere else leaving more space for the layer info. And also check that "Shrink contents to fit frame" option to make the layer info fit the legend element (you'll find it in the Fitting strategy section inside the legend properties,&amp;nbsp; &lt;A href="http://resources.arcgis.com/en/help/main/10.1/00s9/GUID-CE99B836-8EB9-4EAA-BB8F-6F0385EBDB00-web.png"&gt;here&lt;/A&gt;).&lt;BR /&gt;Hope this helps.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, I don't believe that this is the problem - at most my legend contains one layer with five classifications, and some of my maps are a single point layer rendered with a simple renderer. The "Shrink contents to fit frame" option is indeed selected, and the minimum font size is set to 4 pt. Any further thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 15:07:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600171#M56124</guid>
      <dc:creator>MalcolmWilliamson</dc:creator>
      <dc:date>2014-01-29T15:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600172#M56125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Robert, have you had a chance to look for a similar example?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Malcolm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;hmmm, everything in the request looks ok and it even looks like all the rendering info is being passed in. &lt;BR /&gt;&lt;BR /&gt;Would you be able to put up a sample in JSFiddle if its not too much that I could look it.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;I was looking for some code samples on my mac and I realized on one of the apps, we have a custom image service layer and that we had to do a sort of trick to get a legend to appear where we put a dummy layer in a map service with a mock legend to represent the image service layer.&amp;nbsp; All other apps I have built and are using print are using default symbology except for one which is showing full page map only with no legend, I know we have one or two at work built by some of my colleagues that have print functionality with custom renderers so I will check on them when I get in tomorrow to see if they are showing legends or if I can tweak the one I have to add a legend to it.&lt;BR /&gt;&lt;BR /&gt;I don't think this is impossible, if I recall correctly we have done it at our office in one of our apps but I will have to get back to you on that, been in school all day so my mind is not on GIS at the moment, maybe someone from Esri in the meantime can comment on this to maybe point out something I'm forgetting or point us to a sample.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 18:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600172#M56125</guid>
      <dc:creator>MalcolmWilliamson</dc:creator>
      <dc:date>2014-02-03T18:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600173#M56126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone found a solution to the problem? I am facing something similar and would really appreciate any suggestions to get this to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexei&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Sep 2014 20:13:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600173#M56126</guid>
      <dc:creator>AlexeiB</dc:creator>
      <dc:date>2014-09-28T20:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600174#M56127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had the same problem only to realize when using Portrait the legend is present. Meaning my legend had so many items that it did not show. I'm not sure why &lt;A href="https://community.esri.com/migrated-users/40535"&gt;Malcolm Williamson&lt;/A&gt;‌'s is not working. Or maybe this post is long due and a solution was found?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:10:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600174#M56127</guid>
      <dc:creator>AmosWachanga</dc:creator>
      <dc:date>2014-11-18T09:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600175#M56128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've experienced a similar issue and found the problem to be that the "layoutOptions" property of the print template MUST be specified for the legend to be definitely included in the printout.&amp;nbsp; Maybe it was just an isolated instance of the issue, but it sure worked for me.&amp;nbsp; I also tested it with Esri's latest version of the print service (&lt;A href="http://utility.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task"&gt;http://utility.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frederick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 07:23:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600175#M56128</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2015-02-06T07:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Printing a legend for a dynamically rendered dynamic layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600167#M56120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Following your advice, I've got my layer id and sublayer ids pushed into an array that is passed to the legendLayers property. If you look at tail end of the JSON being posted (below), you'll see that legendOptions includes those. However, I'm still getting no legend at all on the PDF maps. Thoughts? I can't locate an example app which includes a legend and a print option to compare.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Format PDF
Layout_Template A3 Landscape
Web_Map_as_JSON {"mapOptions":{"showAttribution":true,"extent":{"xmin":-10884089.275607755,"ymin":4039507.1494186064,"xmax":-9710016.521147506,"ymax":4407627.877639997,"spatialReference":{"wkid":102100}},"spatialReference":{"wkid":102100},"scale":2311162.217155},"operationalLayers":[{"id":"layer0","title":"layer0","opacity":1,"minScale":591657527.591555,"maxScale":2256.994353,"type":"OpenStreetMap","url":"http://a.tile.openstreetmap.org"},{"id":"Districts","title":"Districts","opacity":0.7,"minScale":0,"maxScale":0,"url":"http://165.29.23.149/arcgis/rest/services/DistrictReports_FY22/MapServer","visibleLayers":[32],"layers":[{"id":32,"layerDefinition":{"id":32,"source":{"type":"mapLayer","mapLayerId":32},"drawingInfo":{"renderer":{"type":"classBreaks","field":"Two_or_More_Races_Total_Pie","minValue":0,"classBreakInfos":[{"classMaxValue":161,"label":"0 - 161","description":"","symbol":{"color":[255,255,204,255],"outline":{"color":[0,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}},{"classMaxValue":322,"label":"162 - 322","description":"","symbol":{"color":[218,196,131,255],"outline":{"color":[0,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}},{"classMaxValue":483,"label":"323 - 483","description":"","symbol":{"color":[181,127,72,255],"outline":{"color":[0,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}},{"classMaxValue":644,"label":"484 - 644","description":"","symbol":{"color":[144,58,29,255],"outline":{"color":[0,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}},{"classMaxValue":805,"label":"645 - 805","description":"","symbol":{"color":[107,0,0,255],"outline":{"color":[0,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}}],"classificationMethod":"esriClassifyEqualInterval"}},"minScale":0,"maxScale":0}}]},{"id":"map_graphics","minScale":0,"maxScale":0,"featureCollection":{"layers":[]}}],"exportOptions":{"outputSize":[800,1100],"dpi":96},"layoutOptions":{"titleText":"Two or More Races Total","authorText":"Made by: Arkansas Department of Education","copyrightText":"&amp;lt;copyright info here&amp;gt;","scaleBarOptions":{"metricUnit":"Kilometers","metricLabel":"km","nonMetricUnit":"Miles","nonMetricLabel":"mi"},"legendOptions":{"operationalLayers":[{"id":"Districts","subLayerIds":[32]}]}}}
f json&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:44:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/printing-a-legend-for-a-dynamically-rendered/m-p/600167#M56120</guid>
      <dc:creator>MalcolmWilliamson</dc:creator>
      <dc:date>2021-12-12T01:44:55Z</dc:date>
    </item>
  </channel>
</rss>

