I have a map tip set up on a Feature Layer.One of the fields is too long...what I am trying to do is wrap the text...and failing...I first figured it would expand the MapTip dialog box but then nothing was wrapping...so I set the width adn height and still no wrapping...Thoughts?I tried this <esri:FeatureLayer.MapTip >
<Border esri:GraphicsLayer.MapTipHideDelay="00:00:01.5" CornerRadius="10"
BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15">
<Border.Background>
<LinearGradientBrush EndPoint="1.038,1.136" StartPoint="0.015,0.188">
<GradientStop Color="#FFD1DFF2"/>
<GradientStop Color="#FF092959" Offset="0.946"/>
</LinearGradientBrush>
</Border.Background>
<Border.Effect>
<DropShadowEffect ShadowDepth="10" BlurRadius="14" Direction="300" />
</Border.Effect>
<Grid>
<StackPanel Orientation="Vertical" Margin="5" Height="150" Width="250" VerticalAlignment="Center">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Location: " FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center" />
<TextBlock TextWrapping="Wrap" Text="{Binding Converter={StaticResource MyDictionaryConverter},
ConverterParameter=Location, Mode=OneWay}" />
</StackPanel>
</StackPanel>
<Border BorderBrush="Black" BorderThickness="1" />
</Grid>
</Border>
</esri:FeatureLayer.MapTip>