protected createVisual(context: IRenderContext, edge: IEdge): Visual | null {
const path = document.createElementNS('http://www.w3.org/2000/svg', 'path')
path.setAttribute('d', this.createPathData(edge))
path.setAttribute('fill', 'none')
path.setAttribute('stroke', 'black')
path.setAttribute('stroke-width', '1')
return new SvgVisual(path)
}