i have a rect element and i want to set up a dash stroke only in the right side, currently i've added the lines with css like this:
.c3-event-rect {
stroke: #ccc;
stroke-dasharray: 1,3;
stroke-width: 1px;
}
with javascritp is something like
d3.selectAll('.c3-event-rect')
.style('stroke-dasharray', ('2,3'))
.style('stroke', '#dedede')
but the dashed is covered all the sides i've tried this post here but i don't get the result that i want