Completed
Last Updated: 07 Oct 2016 13:53 by ADMIN
ADMIN
Created by: Ivan
Comments: 0
Category: Diagram
Type: Bug Report
0
When you serialize a bezier connection moved with mouse, the deserialization is not done -well - connection is not with the proper connection points.

Possible workaround:

   private void diagram_ConnectionDeserialized_1(object sender, Telerik.Windows.Controls.Diagrams.ConnectionSerializationRoutedEventArgs e)
        {
            Point startBezier = (Point)Utils.ToPoint((e.SerializationInfo["start"].ToString()));
            Point endBezier = (Point)Utils.ToPoint((e.SerializationInfo["end"].ToString()));

            Dispatcher.BeginInvoke(new Action(() =>
            {
                (e.Connection as RadDiagramConnection).SetBezierHandles(startBezier, endBezier);
            }), DispatcherPriority.Loaded);
        }

        private void diagram_ConnectionSerialized_1(object sender, Telerik.Windows.Controls.Diagrams.ConnectionSerializationRoutedEventArgs e)
        {
            e.SerializationInfo["start"] = Utils.ToInvariant(e.Connection.ConnectionPoints[0]);
            e.SerializationInfo["end"] = Utils.ToInvariant(e.Connection.ConnectionPoints[1]);
        }


Available in LIB version: 2016.3.1010
Completed
Last Updated: 13 Jan 2022 09:49 by ADMIN
Release R1 2022
ADMIN
Created by: Petar Mladenov
Comments: 4
Category: Diagram
Type: Feature Request
24
Currently large diagrams are hard to export with good quality because of the memory limitation in WritableBitmap when the DPI is increased.

 -- One option is to use BitMapCacheBrush (discussed here http://www.telerik.com/forums/low-resolution-using-exporttoimage-on-big-diagram)

 -- Another option is to export multiple images of the diagram which cover it all. Then possibly combine these pictures into one.

 -- Also , you can try increasing the operating memory of your Visual Studio
Completed
Last Updated: 06 Apr 2016 11:22 by Darko
Group of 3 containers A B and C is being dragged. B is nested in A, C is separate.

Group is dragged by dragging B. 

Issue 1 => B goes into drop aware state with red border around it.

Issue 2 => when releasing the mouse B and C become children of A.


Will be available in R2 2016 Release.
Completed
Last Updated: 14 May 2016 10:45 by ADMIN
Available in LIB version: 2016.2.516
Completed
Last Updated: 01 Feb 2016 08:44 by ADMIN
Custom SettingsPane is designed to edit property from the shapes (or connections) DataContext via

extensions:SettingsPaneView.EditorPropertyName="DataContext.ShapeName" kind of binding.

If group of shapes are selected, the editing works only for the first selected shape but it should work for all select, just like when you edin non-databound diagram shapes and change their text for example. 


Available in LIB version: 2016.1.21
Completed
Last Updated: 14 Jun 2016 07:50 by ADMIN
The settings pane doesn't take into account the scenario when its popup is opened close to the top or bottom bounds of the screen, in the calculation of its vertical position. 


Available in R2 2016 SP
Completed
Last Updated: 07 Sep 2016 07:17 by ADMIN
If you pan the Diagram on touch device the Pan event is not fired.

Available in R3 2016 Release
Completed
Last Updated: 07 Sep 2016 08:29 by Youngjae
Shape is dropped onto ContainerShape and the container is auto-resized.
When you press Ctrl + Z, the shape is removed, but the old size of the Container is not reverted.

Expected : the container should return to its old size.
When there is a nesting of containers and you drop a shape into in innermost container, Ctrl + Z will return the previos size of the container.

Available in R3 2016 Official Release.
Completed
Last Updated: 27 Jan 2016 13:57 by ADMIN
When you start resize operation on a grouped ContainerShape and Shape in it the Container shape size can not be shrink-ed more than the previous BottomRight position of the shape in it (despite that the shape size is changed and there is space for the collapsing).


Available in LIB version: 2016.1.21
Completed
Last Updated: 13 Feb 2020 09:02 by ADMIN
Release R1 2020 SP1

If we have a custom shape that derives from RadDiagramShapeBase and we rotate it at some degree (90) for example, and then resize it the diagram's selection adorner is misplaced with the shape. Workaround:

Set RenderTransofrmOrigin = new Point(0.5, 0.5) to the shape.

Other workaround: Derive the custom shape from RadDiagramShape, instead of RadDiagramShapeBase.

Completed
Last Updated: 23 Oct 2015 14:14 by ADMIN
A stackOverflow exception is thrown when the diagram is layouted with AStarRouter, Sugiyama and connection bridges.


Available in LIB version: 2015.3.1026 
Completed
Last Updated: 17 Apr 2015 12:40 by ADMIN
Diagram has no ContainerShapes.

Layout returns different results when TreeLayoutSettings.IgnoreContainers is True / False. Same issue is produced when layout is sugiyama and sugiyamasettings' IgnoreContainers is True

When True, the result is incorrect - every shape is treated like separate graph component.

The fix is available in LIB Version 2015.1.0420.
Completed
Last Updated: 16 Mar 2015 12:48 by ADMIN
ContainerShapes has connections connecting shapes in it.

RouteConnections is True.

After Expand Collapse - the ContainerShape has wrong size.

The bug is introduced in Q1 2015.

Available in LIB version: 2015.1.1603
Completed
Last Updated: 05 Feb 2015 17:29 by ADMIN
ADMIN
Created by: Zarko
Comments: 0
Category: Diagram
Type: Bug Report
1
Using TreeLayout may lead to a memory leak because the TreeLayoutProcessor keeps a reference to the layout Root.

Available in LIB version: 2014.3.1402
Completed
Last Updated: 12 Feb 2015 07:48 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: Diagram
Type: Bug Report
1
OrgTreeRouter holds references to RadDiagramConnections which are not removed from memory.

Available in LIB version: 2014.3.1409
Completed
Last Updated: 09 Feb 2015 15:16 by ADMIN
IsPanEnabled property is not respected when the diagram is panned with touch/pan gesture

Available in LIB version: 2014.3.1409
Completed
Last Updated: 21 Jan 2015 15:02 by ADMIN
If you manually remove a connection from a container (Source and Target are still in the container) and then drag this container in another one an exception will be thrown.

The fix is available in LIB Version 2014.3.1326.
Completed
Last Updated: 19 Jan 2015 14:09 by ADMIN
When using SettingsPane on connection, the source and target cap types combos can be misaligned. For example when source is None and target is arrow 1.

Available in LIB version: 2014.3.1319
Completed
Last Updated: 15 Jan 2015 15:30 by ADMIN
Setting IsConnectorsManipulationEnabled on a shape doesn't hide/show the Connectors immediately - you have to force a VisualState update. 

The fix is available in LIB Version 2014.3.1312.
Completed
Last Updated: 13 Jan 2015 14:18 by ADMIN
ConnectionManipulationCompleted event does not fire when a shape is rotated more than 45 degrees and custom connector is used.

The fix is available in LIB Version 2014.3.1305.