Using a FeatureLayer that has different symbols coming from the server... Is there a way to bind the graphics corresponding symbol inside the map tip? This way when using a clusterer (that hides the symbol) it would still show in the map tip!Example:
<sdl:MapTip>
<StackPanel Margin="10">
<esriPrimitives:SymbolDisplay Symbol="{Binding Symbol}" /> <!-- Trying to get symbol displayed here -->
<TextBlock Text="{Binding [sgnl_type_desc]}" FontWeight="Bold" FontSize="12" Foreground="Black" />
<TextBlock Text="{Binding [ENTY_NME]}" FontSize="10" Foreground="Black" />
</StackPanel>
</sdl:MapTip>
Thanks a lot for any help or ideas!