<polyline>

<polyline>SVG 要素で、複数の��を結ぶ直線を作成する SVG の基本図形です。一般的に polyline は開いた図形を作成するために用いられます。最後の点は最初の点に接続されている必要はないからです。閉じた図形については <polygon> 要素を参照してください。

html
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
  <!-- Example of a polyline with the default fill -->
  <polyline points="0,100 50,25 50,75 100,0" />

  <!-- Example of the same polyline shape with stroke and no fill -->
  <polyline points="100,100 150,25 150,75 200,0" fill="none" stroke="black" />
</svg>

属性

points

この属性は、連続線を描画するのに必要な点(x,y の絶対座標の組)のリストを定義します。 値の型: <number>+ ; 既定値: ""; アニメーション:

pathLength

この属性は、パスの全長をユーザー単位で指定します。 値の型: <number> ; 既定値: none; アニメーション:

使用可能な場所

カテゴリー基本シェイプ要素���グラフィック要素、図形要素
許可されている内容任意の数、任意の順序の以下の要素。
アニメーション要素
説明的要素

仕様書

Specification
Scalable Vector Graphics (SVG) 2
# PolylineElement

ブラウザーの互換性

BCD tables only load in the browser

関連情報