Link text positioning

How do I move text “False” to more left. I would like similar to “True” to give enough space from the port.

Here is my linktemplate.

    <DataTemplate x:Key="LinkTemplate">
        <go:LinkPanel go:Part.Reshapable="True">
            <go:Link.Route>
                <go:Route 
                 Routing="Orthogonal" 
                    Curve="JumpOver" 
                    Curviness="10"
                    RelinkableFrom="True"   
                    RelinkableTo="True" />
            </go:Link.Route>
            <Path 
                Fill="Black"   
                go:LinkPanel.ToArrow="Triangle"   />
            <Path 
                go:LinkPanel.IsLinkShape="True" 
                Stroke="Black" 
                StrokeThickness="1" />
            <TextBlock Text="{Binding Path=Data.Text, Mode=TwoWay}"
                TextWrapping="Wrap" 
                MaxWidth="50" 
                go:Part.TextEditable="False" 
                go:LinkPanel.Index="1" 
                go:LinkPanel.Alignment="0 0 -2 0"
                Visibility="{Binding Path=Link,
                Converter={StaticResource theLabelVisibilityConverter}}" />
        </go:LinkPanel>
    </DataTemplate>

Try setting go:LinkPanel.Offset=“NaN NaN”.

Thanks it worked.Big smile