<?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: Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697339#M17900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;where i can get the sample? is this sample be about printing graphics with slverlight api?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 May 2012 08:25:06 GMT</pubDate>
    <dc:creator>zhuzheng</dc:creator>
    <dc:date>2012-05-17T08:25:06Z</dc:date>
    <item>
      <title>Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697336#M17897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been using dbrous's&amp;nbsp; printing sample&amp;nbsp; and customized it in my applications, it is always great. So here, I want to say I really appreciate his work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yesterday&amp;nbsp; by an acciden, I found&amp;nbsp; the control had a problem with the GraphicsLayer which has clusterer renderer, for all other graphicslayer are OK, as soon as I removed clusterer renderer, it was OK.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem caused the application collapsed, when you open the print control,&amp;nbsp; the graphics only show either the app ( main browser ) or printing control ( Cloned map) , after toggles a few times, then the app was collapsed, the error showed as the the attachment.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue might still related to&amp;nbsp; ArcGIS server Silverlight API ( about clusterer renderer). If somebody had the same problem and fixed, please let&amp;nbsp; me know, because I still want to use the clusterer for the GraphicsLayer and the printing control.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2012 14:16:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697336#M17897</guid>
      <dc:creator>DeminHu</dc:creator>
      <dc:date>2012-04-04T14:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697337#M17898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Demin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your appreciation concerning this sample.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To fix the cluster issue, you can replace this line in CloneMap:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;printLayer.Clusterer = fromLayer.Clusterer; &lt;SPAN style="color:green;"&gt;// &lt;/SPAN&gt;&lt;SPAN style="color:darkblue;"&gt;&lt;STRONG&gt;todo : clone ?&lt;/STRONG&gt;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;by&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;printLayer.Clusterer = fromLayer.Clusterer == &lt;SPAN style="color:blue;"&gt;null&lt;/SPAN&gt; ? &lt;SPAN style="color:blue;"&gt;null&lt;/SPAN&gt; : fromLayer.Clusterer.Clone();
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The 'todo' note is no more useful &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:20:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697337#M17898</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-12T05:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697338#M17899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, Dominique&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you so much for the help, it fixed the&amp;nbsp; problem, now all my manager and clients are happy about it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If without your sample, I might went to crazy by being asked on printing, your sample really helped a lot on my work !!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 12:03:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697338#M17899</guid>
      <dc:creator>DeminHu</dc:creator>
      <dc:date>2012-04-05T12:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697339#M17900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;where i can get the sample? is this sample be about printing graphics with slverlight api?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 08:25:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697339#M17900</guid>
      <dc:creator>zhuzheng</dc:creator>
      <dc:date>2012-05-17T08:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using dbroux's printing sample with GraphicsLayer which has Clusterer renderer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697340#M17901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;where i can get the sample? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can get it, here : &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3"&gt;http://www.arcgis.com/home/item.html?id=e361c2cc69784fcba34358d0458f66e3&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;is this sample be about printing graphics with slverlight api?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;It's about printing a Map that can contain graphicslayers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 13:42:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-dbroux-s-printing-sample-with-graphicslayer/m-p/697340#M17901</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-05-17T13:42:48Z</dc:date>
    </item>
  </channel>
</rss>

