EdgeMarker

GitHub のソース

エッジは、オプションでエッジの開始と終了にマーカーを持つことができます。`EdgeMarker` 型は、これらのマーカーを設定するために使用されます! 利用可能なエッジマーカーの種類の詳細については、`MarkerType` のドキュメントを確認してください。

export type EdgeMarker = {
  type: MarkerType;
  color?: string;
  width?: number;
  height?: number;
  markerUnits?: string;
  orient?: string;
  strokeWidth?: number;
};

フィールド

#type
MarkerType
#color?
文字列
#width?
数値
#height?
数値
#markerUnits?
文字列
#orient?
文字列
#strokeWidth?
数値