Completed
Last Updated: 02 Feb 2018 11:40 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 22 Jan 2018 10:07
Category: Diagram, DiagramRibbonBar, DiagramToolBox
Type: Bug Report
3
FIX. RadDiagram - PanToPosition method throws exception if no subscription to the Pan event exists
To reproduce: add a RadDiagram and use the following code snippet:

this.radDiagram1.PanToPosition(new Telerik.Windows.Diagrams.Core.Point(10,10));

Workaround: subscribe to the Pan event: 

this.radDiagram1.Pan += radDiagram1_Pan;

        void radDiagram1_Pan(object sender, Telerik.WinControls.UI.Diagrams.PositionChangedRoutedEventArgs e)
        {
        }
0 comments