<?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: Graduated Symbols in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535790#M14480</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you can succesfully implement a graduated colors renderer then you are almost there. In the IClassBreaksRenderer there is a property for Symbol. Just pass a symbol (which contains the size) into this property for each break index.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2012 17:09:45 GMT</pubDate>
    <dc:creator>RichWawrzonek</dc:creator>
    <dc:date>2012-11-15T17:09:45Z</dc:date>
    <item>
      <title>Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535789#M14479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How do you created an IClassBreaksRenderer that uses "Graduated Symbols"?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been able to create one for "Graduated Colors" but have not found the way to programmatically modify this setting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 16:44:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535789#M14479</guid>
      <dc:creator>MichaelFaulcon1</dc:creator>
      <dc:date>2012-11-15T16:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535790#M14480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you can succesfully implement a graduated colors renderer then you are almost there. In the IClassBreaksRenderer there is a property for Symbol. Just pass a symbol (which contains the size) into this property for each break index.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:09:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535790#M14480</guid>
      <dc:creator>RichWawrzonek</dc:creator>
      <dc:date>2012-11-15T17:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535791#M14481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am already setting the size as you have described...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I open the MXD and look at the layer symbology properties, the "Quantities" Value (Box) shows Graduated Colors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying the set this to Graduated Symbols.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I set it in ArcMap, I get the rendering effect that I am looking for.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:41:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535791#M14481</guid>
      <dc:creator>MichaelFaulcon1</dc:creator>
      <dc:date>2012-11-15T17:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535792#M14482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cast your feature layer to the IGeoFeatureLayer interface and set the RendererPropertyPageClassID property to the desired property page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//MAKE SURE ARCMAP DISPLAYS THE CORRECT PROPERTY PAGE
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ESRI.ArcGIS.esriSystem.UID pUID = new ESRI.ArcGIS.esriSystem.UIDClass();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pUID.Value = "esriCarto.GraduatedSymbolPropertyPage";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;YourGeoFeatureLayer&amp;gt;.RendererPropertyPageClassID = pUID;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535792#M14482</guid>
      <dc:creator>RichWawrzonek</dc:creator>
      <dc:date>2021-12-11T23:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535793#M14483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The layer symbology properties dialog now opens with the Graduated Symbols item selected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Only the settings that show when Graduated Colors is selected are being honored (map, toc, legend).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, when I alternate clicking between the two options, Graduated Colors shows the symbols that I set thru ArcObjects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Graduated Symbols is randomly picking a color each time i click on it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Basically, the sizes and symbols are only being applied to the Graduated Colors configuration.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 18:36:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535793#M14483</guid>
      <dc:creator>MichaelFaulcon1</dc:creator>
      <dc:date>2012-11-15T18:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535794#M14484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Adding the following seemed to have fixed my issue ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;IClassBreaksRenderer renderer = new ClassBreaksRendererClass();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ILegendInfo li = (ILegendInfo)renderer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;li.SymbolsAreGraduated = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Rich.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You helped me out a lot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 19:45:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535794#M14484</guid>
      <dc:creator>MichaelFaulcon1</dc:creator>
      <dc:date>2012-11-15T19:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Graduated Symbols</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535795#M14485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Glad you got it working. That ILegendInfo class can be confusing because it controls the appearance of layers in the TOC and their renderer in the symbology tab. Don't forget to mark this thread as answered.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 20:06:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/graduated-symbols/m-p/535795#M14485</guid>
      <dc:creator>RichWawrzonek</dc:creator>
      <dc:date>2012-11-15T20:06:57Z</dc:date>
    </item>
  </channel>
</rss>

