<?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 Remove glow filter from FeatureLayer in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/remove-glow-filter-from-featurelayer/m-p/534082#M12058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't see this as an option in the API docs, so I was trying to extend FeatureLayer and override updateLayers() or something to try and remove the GlowFilter, but can't figure it out. I need to optimize selecting thousands of points and lines, and I think the added GlowFilter is adding my overhead. Clustering isn't an option for the data type being represented.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any tips? I could go back to using a GraphicLayer, but I'd need to do a lot of rewrites to replicate the relationship queries I am doing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2011 15:42:32 GMT</pubDate>
    <dc:creator>ReneRubalcava</dc:creator>
    <dc:date>2011-10-19T15:42:32Z</dc:date>
    <item>
      <title>Remove glow filter from FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/remove-glow-filter-from-featurelayer/m-p/534082#M12058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't see this as an option in the API docs, so I was trying to extend FeatureLayer and override updateLayers() or something to try and remove the GlowFilter, but can't figure it out. I need to optimize selecting thousands of points and lines, and I think the added GlowFilter is adding my overhead. Clustering isn't an option for the data type being represented.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any tips? I could go back to using a GraphicLayer, but I'd need to do a lot of rewrites to replicate the relationship queries I am doing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2011 15:42:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/remove-glow-filter-from-featurelayer/m-p/534082#M12058</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2011-10-19T15:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remove glow filter from FeatureLayer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/remove-glow-filter-from-featurelayer/m-p/534083#M12059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, this seems to work in all situations I have tried it in to remove the glow filter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private function removeGlow(fl:FeatureLayer):void
{
 var len:int = fl.numChildren;
 var dObj:DisplayObject;
 for ( var i:int = 0; i &amp;lt; len; i++ ) {
&amp;nbsp; dObj = fl.getChildAt(i);
&amp;nbsp; if (dObj.filters) {
&amp;nbsp;&amp;nbsp; dObj.filters = [];
&amp;nbsp; }
 }
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It has slightly helped with performance, so I'll squeeze as much as I can out of it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:12:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/remove-glow-filter-from-featurelayer/m-p/534083#M12059</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2021-12-11T23:12:30Z</dc:date>
    </item>
  </channel>
</rss>

