This question is locked. New answers and comments are not allowed.
Hello
I am creating Diagram using this code:-
<telerik:RadDiagram x:Name="MyDiagram" Grid.Row="1" IsConnectorsManipulationEnabled="False" IsEnabled="False" RectSelectionMode="Full" SelectionMode="Multiple" > <telerik:RadDiagram.Background> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#FF12997A" Offset="0.017"/> <GradientStop Color="#FF93D61D" Offset="1"/> <GradientStop Color="#FF4425B0" Offset="0.209"/> <GradientStop Color="#FF5632CF" Offset="0.418"/> <GradientStop Color="#FF062780" Offset="0.582"/> <GradientStop Color="#FFB82424" Offset="0.728"/> </LinearGradientBrush> </telerik:RadDiagram.Background> <telerik:RadDiagramShape x:Name="ConditionShape" Width="80" Content="condition" FontWeight="ExtraBold" Geometry="{telerik:FlowChartShape ShapeType=PredefinedShape}" Position="203,119" AllowDrop="False" BorderBrush="#FF3BB800" BorderThickness="30,0" FlowDirection="RightToLeft" FontSize="23" FontStyle="Italic" Foreground="#FF13F0D2" GlidingStyle="Ellipse" Margin="2,-41,21,62" OpacityMask="#FFD12727" Padding="-67,4,4,4" RenderTransformOrigin="0,0.5" RotationAngle="15" Stroke="#FF232C8F" StrokeThickness="15" TabIndex="2147483645" TextOptions.TextFormattingMode="Display" UseDefaultConnectors="False" UseLayoutRounding="False" FontFamily="CordiaUPC" > <telerik:RadDiagramShape.RenderTransform> <CompositeTransform SkewX="-55" SkewY="29" TranslateX="-48.557" TranslateY="-2.4E-05"/> </telerik:RadDiagramShape.RenderTransform> <telerik:RadDiagramShape.Projection> <PlaneProjection RotationX="-22" RotationY="-137" RotationZ="-40"/> </telerik:RadDiagramShape.Projection> <telerik:RadDiagramShape.Effect> <BlurEffect Radius="1"/> </telerik:RadDiagramShape.Effect> <telerik:RadDiagramShape.Background> <RadialGradientBrush> <GradientStop Color="#FFFFB356" Offset="1"/> <GradientStop Color="#FFFFDEDE"/> <GradientStop Color="#FF6BC740" Offset="0.5"/> </RadialGradientBrush> </telerik:RadDiagramShape.Background> </telerik:RadDiagramShape></telerik:RadDiagram>I am saving diagram using this code:-
Dim str As String = MyDiagram.Save().ToStringDim strC As String() = New String(1) {}strC(0) = strFile.WriteAllText("C:\NewDiagram\Diagram.Txt", strC(0), System.Text.Encoding.UTF8)And Load using this code:-
Dim str = File.ReadAllText("C:\NewDiagram\Diagram.Txt", System.Text.Encoding.UTF8)MyDiagram.Load(str)Diagram.Load method doesn't load RenderTransform of RadDiagramShape.
Please suggest me something to solve this problem.