0
폴리 라인을 스텝 커브로 만듭니다. 계단의 선 끝마다가 아니라 중요한 지점에 마커를 배치하고 싶습니다. 어떻게해야합니까? 대체 지점에서 PolyLine의 SVG 마커 만들기. (스텝 커브)
<polyline points="0,0 140,125 160,140 180,220 220,240 300,280 400,450 500,500 900,900"
style="fill: none;"
stroke="blue"
stroke-width="5"
marker-start="url(#point)"
marker-mid="url(#point)"
marker-end="url(#point)"
clip-path="url(#clip)" />
<defs>
<marker id="point" viewbox="0 0 10 10" refx="5" refy="5" markerwidth="10" markerheight="10"
orient="auto" markerUnits = "userSpaceOnUse">
<circle cx="5" cy="5" r="1" stroke="red" stroke-width="1" fill="black">
</circle>
</marker>
</defs>
</g>
나는 적절한 마커를 생성하는 두 개의 서로 다른 SVG 폴리 라인을 사용하지 않습니다.