Adding SpotPanel dissables NodePanel resizing

When I add a SpotPanel to a NodePanel the sizing feature of the NodePanel gets dissabled. I need both resizing feature and spots. Any suggestions? Feature / Bug ?
Thank you,

Pavel Hlobil
Note: Using 1105 SL4 assembly
<DataTemplate x:Key="BoxNodeTemplate2"> <Grid> <go:NodePanel x:Name="nodepanel" Sizing="Fixed" Height="{Binding Data.Height, Mode=TwoWay}" Width="{Binding Data.Width, Mode=TwoWay}" go:Node.LocationSpot="BottomLeft" go:Node.Location="{Binding Data.Location, Mode=TwoWay}" go:Part.SelectionAdornmentTemplate="{StaticResource BoxNodeAdornmentTemplate}" go:Part.Resizable="{Binding BoxResizeVisible, Source={StaticResource BusinessProcessOptions}}" go:Part.ResizeCellSize="{Binding CellSize, Source={StaticResource BusinessProcessOptions}}" go:Part.SelectionAdorned="{Binding BoxResizeNotVisible, Source={StaticResource BusinessProcessOptions}}" go:Part.SelectionElementName="nodepanel" go:Part.ResizeAdornmentTemplate="{StaticResource GroupResizeAdornmentTemplate}"> <Path x:Name="Rect2" go:NodePanel.Figure="Square" Fill="{Binding Data.Color}" Stroke="Black" /> <TextBlock Text="{Binding Data.Key}" HorizontalAlignment="Left" /> </go:NodePanel>

<go:SpotPanel MouseEnter=“Node_MouseEnter”
MouseLeave=“Node_MouseLeave”>
</go:SpotPanel>

</Grid>

In your XAML the go:SpotPanel doesn’t have any child elements, so it is useless, as written.

The HorizontalAlignment and VerticalAlignment specify positioning of each child element (besides the main Path shape) of the NodePanel, within the space determined by the go:NodePanel.Spot1 and .Spot2 properties.

You should be able to have the go:SpotPanel be a (non-first) child of the go:NodePanel, and have the children of the go:SpotPanel be placed wherever you want, using spots.