My featureLayer is drawn with a custom renderer. <Grid.Resources>
<esri:SimpleRenderer x:Key="AMRenderer">
<esri:SimpleRenderer.Symbol>
<esriSymbols:SimpleMarkerSymbol x:Name="AllMarkerSymbol" Color="Green" Style="Circle" Size="8" />
</esri:SimpleRenderer.Symbol>
</esri:SimpleRenderer> </Grid.Resources>
<esri:FeatureLayer ID="AMAvailableLayer"
Url="http://gismaps.pagnet.org/ArcGIS/rest/services/testprojectALLBikeCounts/FeatureServer/0"
MouseLeftButtonUp="FeatureLayer_MouseLeftButtonUp"
SelectionColor="Yellow"
OutFields="Location,VolunteerAM,PhoneAM,EmailAM,SpanishAM"
Where="VolunteerAM = 'Available' and VolunteerPM != 'Available'"
Renderer="{StaticResource AMRenderer}"
DisableClientCaching="True"
AutoSave="True"
EndSaveEdits="FeatureLayer_EndSaveEdits">
<esri:FeatureLayer.MapTip>
<Border CornerRadius="10" BorderBrush="SaddleBrown" BorderThickness="3" Margin="0,0,15,15" Background="LightGray">
<StackPanel Margin="7">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Location: " Foreground="Black" FontWeight="Bold"/>
<TextBlock Text="{Binding [Location]}" Foreground="Black" />
</StackPanel>
</StackPanel>
</Border>
</esri:FeatureLayer.MapTip>
</esri:FeatureLayer>
Note that the selection color in the layer is set to Yellow. In operation this places a yellow square around the selected point (very hard to see) but does not change the color of the point itself. How can I change my code so that the symbol for the selected point becomes yellow?Thanks