例エッジエッジタイプエッジタイプSvelte Flowでは、様々な種類のエッジタイプを選択できます:default(ベジェ)、straight(直線)、step(ステップ)、smoothstep(スムーズステップ)。ご覧のとおり、エッジごとにタイプを定義し、1つのグラフに混在させることができます。index.htmlApp.svelte<script lang="ts"> const data: string = "world"; </script> <h1>Hello {data}</h1> <style> h1 { font-size: 1.5rem; } </style>読み取り専用Stackblitzで開くCodesandboxで開く機能概要