Class ConnectorTargetPoint
Represents the Point where the target point of the connector should be placed.
Inherited Members
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class ConnectorTargetPoint : DiagramPoint
Examples
<SfDiagram Height="600px" Connectors="@ConnectorCollection">
</SfDiagram>
@code
{
//...
DiagramConnector DiagramConnector = new DiagramConnector()
{
// Set the target point of the connector
SourcePoint = new ConnectorSourcePoint() { X = 100, Y = 100 },
TargetPoint = new ConnectorTargetPoint() { X = 200, Y = 200 },
};
//...
}
Constructors
ConnectorTargetPoint()
Represents the Point where the target point of the connector should be placed.
Declaration
public ConnectorTargetPoint()