Hi,
When there is one diagram in the page like:
@(Html.Kendo().Diagram()            .Name("diagram1")            .Layout(l => l                .Type(DiagramLayoutType.Tree)                .Subtype(DiagramLayoutSubtype.Right)                .HorizontalSeparation(30)                .VerticalSeparation(20)            )            ...........)But when there is another diagram:
@(Html.Kendo().Diagram()            .Name("diagram2")            )            .Layout(l => l                .Type(DiagramLayoutType.Tree)                .Subtype(DiagramLayoutSubtype.Down)                .HorizontalSeparation(30)                .VerticalSeparation(20)            )first diagram renders also "tree down"...
So, what should I do?