I have a graphics layer that has graphics populated, but I am unable to see the graphics in the map. I know the graphics exist because it is possible to zoom to selected graphics. I am currently using the same working renderer methodology for lines and polygons, but it is not working for points. The point graphics layer does show the symbol correctly in the legend, just nothing is showing up in the map.<esri:SimpleRenderer x:Key="SelectRendererPoint">
<esri:SimpleRenderer.Symbol>
<esri:MarkerSymbol>
<esri:MarkerSymbol.ControlTemplate>
<ControlTemplate>
<Ellipse x:Name="Element" Width="8" Height="8" Fill="blue" Stroke="blue" HorizontalAlignment="Center" VerticalAlignment="Center">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="SelectionStates">
<VisualState x:Name="Unselected" />
<VisualState x:Name="Selected" >
<Storyboard>
<ColorAnimation Storyboard.TargetName="Element"
Storyboard.TargetProperty="(Ellipse.Fill).(SolidColorBrush.Color)"
To="#99FFFF00" Duration="00:00:0.25"/>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
</Ellipse>
</ControlTemplate>
</esri:MarkerSymbol.ControlTemplate>
</esri:MarkerSymbol>
</esri:SimpleRenderer.Symbol>
</esri:SimpleRenderer>
<esri:GraphicsLayer ID="MyGraphicsLayerPoints" Renderer="{StaticResource SelectRendererPoint}"></esri:GraphicsLayer>
What would cause the point graphics layer that contains graphics to not show the renderer symbology?