Skip to content

Instantly share code, notes, and snippets.

@AlexeyBoiko
Last active October 12, 2021 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexeyBoiko/623ae8a32d3b4ae7ba53abf6c844249d to your computer and use it in GitHub Desktop.
Save AlexeyBoiko/623ae8a32d3b4ae7ba53abf6c844249d to your computer and use it in GitHub Desktop.
Blazor WebAssembly: Connecting Lines in SVG
<svg xmlns="http://www.w3.org/2000/svg">
<circle cx="85" cy="100" r="15" fill="#04dcd2" stroke="#fff" />
<circle cx="315" cy="250" r="15" fill="#04dcd2" stroke="#fff" />
<Connector
X1=100 Y1=100
Dir1=Direction.Right
X2=300 Y2=250
Dir2=Direction.Left />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment