I need to find a way to expand the clickable area of an SVG border made from strokes without fill.
If I add a border with stroke width to enlarge the click zone, it will interfere with the existing borders on the shapes. Adding a second transparent layer below is also not an option due to selection mechanisms and real-time element updates in place.
Is there a solution where multiple layers function as one to increase the clickable area?
EDIT: Here is a sample shape code
<g>
<path class="graph_edge" d="M239.25 -185.8L290.125
-185.8L290.125 -281L341 -281">
</path>
</g>
Given the constraints, adding an id or altering the existing path are not viable options for me at the moment.