AnimationTime

Hi,

I can change Diagram.LayoutManager.AnimationTime in code.

private void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
{
myDiagram.LayoutManager.AnimationTime = 2000;
}

I also tried to change it in xaml.

go:Diagram.LayoutManager
No Properties Available
</go:Diagram.LayoutManager>

How an I change AnimationTime in xaml?

Thanks
Rich

XAML property-element syntax does not support any attributes. You have to supply attributes to a regular element:

<go:Diagram x:Name=“myDiagram” …>
go:Diagram.LayoutManager
<go:LayoutManager Animated=“True” AnimationTime=“1000” DefaultLocation=“0 0” />
</go:Diagram.LayoutManager>
</go:Diagram>