To reproduce:
- Add some shapes and call the BringToView method
Private Sub RadButton4_Click(sender As Object, e As EventArgs) Handles RadButton4.Click
Dim ds As RadDiagramShape
For i As Integer = 0 To Me.RadDiagram1.Shapes.Count - 1
If i = 2 Then
ds = DirectCast(RadDiagram1.Shapes(i), RadDiagramShape)
Me.RadDiagram1.DiagramElement.BringIntoView(ds, 1.0, True)
Exit For
End If
Next
End Sub
Workaround:
Me.RadDiagram1.DiagramElement.BringIntoView(ds, 1.0, False)