Skip to content

Commit 519ae61

Browse files
author
GopalakrishnanVeeraragavan
committed
Merge branch 'development' of https://github.com/syncfusion-content/blazor-docs into 902038-BlazDoc
2 parents 0d6401d + b24dd97 commit 519ae61

23 files changed

+222
-34
lines changed

blazor/diagram/bpmn-shapes/bpmn-expanded-sub-process.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
109109

110110
While resizing or dragging the child element, if the child element bounds are within the ExpandedSubProcess bounds, the ExpandedSubProcess size will be updated along with that.
111111

112-
The following image shows how to add BPMNNode into the BPMN ExpandedSubProcess at runtime.
112+
The following image shows how to add BPMN node into the BPMN ExpandedSubProcess at runtime.
113113

114114
![BPMN Expanded Sub-Process](../images/Bpmn-ExpandedSubProcess.gif)
115115

@@ -292,14 +292,14 @@ SubProcessType represents the type of task that is being processed. The [SubProc
292292
```
293293
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/BpmnEditor/BpmnExpandedSubProcess/ExpandedSubProcessType)
294294

295-
![Event Boundary BPMN Shape](../images/Bpmn-CollapsedSub-Process-Event.png)
295+
![Event Boundary BPMN Shape](../images/Bpmn-ExpandedSub-Process-Event.png)
296296

297297
The following table contains various types of BPMN SubProcess.
298298

299299
| SubProcessType | Image | Description|
300300
| -------- | -------- | -------- |
301-
| Call | ![Call Boundary BPMN Shape](../images/Bpmn-CollapsedSub-Process-Call.png) |It is a global sub-process that is reused at various points in the business flow.|
302-
| Event | ![Event Boundary BPMN Shape](../images/Bpmn-CollapsedSub-Process-Event.png) |The event sub-process is a sub-process that is triggered by an event. An event sub-process can be added at the process level or at any sub-process level.|
303-
| Transaction | ![Default Boundary BPMN Shape](../images/Bpmn-CollapsedSub-Process-Transaction.png) |It is a specialized sub-process that involves payment.|
304-
| Default | ![Default Boundary BPMN Shape](../images/Bpmn-CollapsedSub-Process-Default.png) |The task that is performed in a business process. It is represented by a rounded rectangle.|
301+
| Call | ![Call Boundary BPMN Shape](../images/Bpmn-ExpandedSub-Process-Call.png) |It is a global sub-process that is reused at various points in the business flow.|
302+
| Event | ![Event Boundary BPMN Shape](../images/Bpmn-ExpandedSub-Process-Event.png) |The event sub-process is a sub-process that is triggered by an event. An event sub-process can be added at the process level or at any sub-process level.|
303+
| Transaction | ![Default Boundary BPMN Shape](../images/Bpmn-ExpandedSub-Process-Transaction.png) |It is a specialized sub-process that involves payment.|
304+
| Default | ![Default Boundary BPMN Shape](../images/Bpmn-ExpandedSub-Process-None.png) |The task that is performed in a business process. It is represented by a rounded rectangle.|
305305

blazor/diagram/connectors/connectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ The following code explains how to add an connector with annotation at runtime
183183
connectors.Add(Connector);
184184
}
185185
186-
public void AddConnector()
186+
public async void AddConnector()
187187
{
188188
Connector NewConnector = new Connector()
189189
{

blazor/diagram/connectors/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ The following code illustrates how to set the HitPadding for the connector.
623623
SourcePoint = new DiagramPoint() { X = 100, Y = 100 },
624624
TargetPoint = new DiagramPoint() { X = 200, Y = 200 },
625625
// Type of the connector segments.
626-
Type = ConnectorSegmentType.Straight
626+
Type = ConnectorSegmentType.Straight,
627627
//Define the HitPadding property.
628628
HitPadding = 20,
629629
};

blazor/diagram/connectors/interactions.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,9 +518,11 @@ The [ObstaclePadding](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Di
518518
{
519519
nodes = new DiagramObjectCollection<Node>()
520520
{
521-
new Node() { ID = "node1", OffsetX = 100, OffsetY = 300, Width = 100, Height =100 },
522-
new Node() { ID = "node2", OffsetX = 600, OffsetY = 100, Width = 100, Height = 100 },
523-
new Node() { ID = "node3", OffsetX = 400, OffsetY = 250, Width = 100, Height = 100 }
521+
new Node() { ID = "node1", OffsetX = 100, OffsetY = 300, Width = 100, Height =100, Annotations= new DiagramObjectCollection<ShapeAnnotation>(){ new ShapeAnnotation() { Content="Source" } } },
522+
new Node() { ID = "node2", OffsetX = 430, OffsetY = 130, Width = 100, Height = 100, Annotations= new DiagramObjectCollection<ShapeAnnotation>(){ new ShapeAnnotation() { Content="Target" } } },
523+
new Node() { ID = "node3", OffsetX = 430, OffsetY = 250, Width = 100, Height = 100, Annotations= new DiagramObjectCollection<ShapeAnnotation>(){ new ShapeAnnotation() { Content="Obstacle 1" } } },
524+
new Node() { ID = "node4", OffsetX = 150, OffsetY = 90, Width = 100, Height = 100, Annotations= new DiagramObjectCollection<ShapeAnnotation>(){ new ShapeAnnotation() { Content="Obstacle 2" } } }
525+
524526
};
525527
connectors = new DiagramObjectCollection<Connector>(){
526528
new Connector()

blazor/diagram/connectors/segments/bezier/settings/segmenteditorientation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The following code illustrates how to interact with Bezier efficiently by using
8181
//Define the smoothness for a bezier connector.
8282
Smoothness = BezierSmoothness.SymmetricAngle,
8383
//Define the orientation of the segment editing controls.
84-
SegmentEditOrientation = BezierSegmentEditOrientation.Freeform
84+
SegmentEditOrientation = BezierSegmentEditOrientation.FreeForm
8585
},
8686
Constraints = ConnectorConstraints.Default | ConnectorConstraints.DragSegmentThumb
8787
};

blazor/diagram/connectors/segments/orthogonal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Orthogonal segments are used to create segments that are perpendicular to each o
5555
```
5656
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Segments/Orthogonal)
5757

58-
The [Length](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.OrthogonalSegment.html#Syncfusion_Blazor_Diagram_OrthogonalSegment_Length) and [Direction](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.OrthogonalSegment.html#Syncfusion_Blazor_Diagram_OrthogonalSegment_Direction)properties allow defining the flow and length of the segment. The following code example illustrates how to create customized orthogonal segments.
58+
The [Length](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.OrthogonalSegment.html#Syncfusion_Blazor_Diagram_OrthogonalSegment_Length) and [Direction](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.OrthogonalSegment.html#Syncfusion_Blazor_Diagram_OrthogonalSegment_Direction) properties allow defining the flow and length of the segment. The following code example illustrates how to create customized orthogonal segments.
5959

6060
```cshtml
6161
@using Syncfusion.Blazor.Diagram
@@ -112,7 +112,7 @@ The [Length](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.Ort
112112
}
113113
}
114114
```
115-
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Segments/MultipleSegments)
115+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Segments/Orthogonal)
116116

117117
![Connector with Orthogonal Segment in Blazor Diagram](../../images/blazor-diagram-connector-with-orthogonal.png)
118118

blazor/diagram/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ N> Syncfusion Blazor components are available in [nuget.org](https://www.nuget.o
5151
* Register the Syncfusion Blazor Service in the **~/Program.cs** file.
5252

5353
{% tabs %}
54-
{% highlight c# tabtitle="~/Program.cs" hl_lines="3 9 12" %}
54+
{% highlight c# tabtitle="~/Program.cs" hl_lines="3 10 12" %}
5555

5656
using Microsoft.AspNetCore.Components;
5757
using Microsoft.AspNetCore.Components.Web;
-1.84 KB
Loading
346 KB
Loading
342 KB
Loading

0 commit comments

Comments
 (0)