Bring Into View and Auto Fit Support
The RadDiagram framework allows you to bring a specific item(s) or position into its viewport through couple of methods – BringIntoView() and AutoFit().
BringIntoView
The BringIntoView method can be used to bring a section of the diagram’s surface into the viewport. The method has few overloads which bring different components into view.
- The method can bring a specific Rect into the view. In other words the diagram can fit the viewport into coordinates and the size of the Rect element.
- The method can bring a specific IDiagramItem (RadDiagramShape, RadDiagramConnection, etc.) and then center it into the viewport.
- The method can bring a particular position into the top left coordinates of the viewport
AutoFit
The AutoFit method tries to adjust the viewport so that all items which are plotted on the diagram are visible. The method expose an additional overload which takes a Thickness objects as an argument that represents the margin used as a white space border around the diagram items.
RadDiagram also provides AutoFitAsync() method which executes the same action as the AutoFit() but asynchronously.
How to use the BringIntoView and AutoFit methods
This section demonstrates the use of the BringIntoView and AutoFit methods. For the sake of the examples the following RadDiagram XAML declaration will be used:
<telerik:RadDiagram x:Name="diagram" Width="600" Height="600">
<telerik:RadDiagramShape x:Name="diagramShape" Position="200 160" />
<telerik:RadDiagramShape Position="400 860" />
</telerik:RadDiagram>
-
BringIntoView - The method exposes several overloads:
-
BringIntoView(Rect newViewPort, [bool useAnimation = true]) – this overload accepts a Rect object that defines the new viewport of the diagram and fits it inside the Rect. The second argument is optional and it determines if the bring into view should be performed with an animation.
this.diagram.BringIntoView(new Rect(220, 180, 300, 100));
-
BringIntoView(object item, [double zoomLevel = 1], [bool useAnimation = true]) – this overload accepts an object that contains the shape which should be brought into the view. The last two arguments define the zoom level which should be applied and if an animation should be performed. The shape will be positioned at the center of the viewport.
this.diagram.BringIntoView(this.diagramShape);
-
BringIntoView(Point position, [double zoomLevel = 1], [bool useAnimation = true]) – this overload gets a Point object which determines the top left position of the viewport. The last two arguments define the zoom level which should be applied and if an animation should be performed.
this.diagram.BringIntoView(new Point(200, 160));
-
-
AutoFit - the method provides two overloads:
-
AutoFit() – this overload will fit the items without using any margin as a white space border.
this.diagram.AutoFit();
-
AutoFit(Thickness margin, [bool useAnimation = true]) - this overload accepts a Thickness object as an argument that determines the margin used as a white space border around the diagram items.
this.diagram.AutoFit(new Thickness(100));
-