Hi,
I have an issue with a graphic result with the RadDiagram.
The obtained result is not systematic, but sometimes the connection is not drawn as expected.
This is the way, the diagram is initialized:
Is there a way to get the expected result ?
Best regards,
Thierry
I have an issue with a graphic result with the RadDiagram.
The obtained result is not systematic, but sometimes the connection is not drawn as expected.
This is the way, the diagram is initialized:
this
.Diagram.RoutingService.Router =
new
OrgTreeRouter
{
TreeLayoutType = TreeLayoutType.TreeDown,
ConnectionOuterSpacing = 16
};
var settings =
new
TreeLayoutSettings
{
TreeLayoutType = TreeLayoutType.TreeDown,
VerticalSeparation = 100,
HorizontalSeparation = 40,
AnimateTransitions =
false
};
settings.Roots.Add(
this
.Diagram.Shapes[0]);
this
.Diagram.Layout(LayoutType.Tree, settings);
this
.Diagram.AutoFit(
new
Thickness(20),
false
);
this
.Diagram.UpdateLayout();
Is there a way to get the expected result ?
Best regards,
Thierry