I have create a marker as following :
Is there a way I can drag the above line with help of the marker? Marker is right at the end of the line and I want the move/drag lines up/down only using those markers. I don't want to extend the line and overlay the marker on the extended part?
Any idea or help would be highly appreciated.
<svg viewBox="0 0 800 600" width="800" height="600">
<defs>
<marker id="triangle" viewBox="0 -5 10 10" refX="0" refY="0"
markerWidth="6" markerHeight="6" orient="auto">
<path d="M0,-5L10,0L0,5"></path></marker>
</defs>
<line x1="221.12405395507812" y1="223.1294403076172" x2="394.1240539550781"
y2="223.1294403076172" class="Horizontal" marker-end="url(#triangle)"
style="stroke-width: 2.27357;"></line>
</svg>