Edges converging on markers chord diagram Holoviews/Bokeh

I have the following code:

hv.extension(‘bokeh’)
hv.output(size=200)

edges_df = pd.DataFrame(edges, columns=[‘source’, ‘target’, ‘weight’])

chord = hv.Chord(edges_df)

chord.opts(
opts.Chord(cmap=‘viridis’, edge_color=dim(‘weight’), node_color=None, node_size=10, labels=‘index’,
colorbar=True, node_fill_color=None, node_marker=‘dot’)
)

chord

It comes out fine, but the edge lines are always falling on different points of the segment that each node occupies in the circle. I need the edge lines to converge on the single point (marker) of each node Any ideas?

Here is an example of what I am looking for:

and here is what I have now: