I'd like to modify d3's Chord Diagram:
I would like to allow values to be updated. This jsfiddle contains my code so far, but I'm stuck as the ticks and their labels don't seem to update (click on the link to update with new matrix). The rest of it seems to work fine (I think...).
I think the problem is that the ticks are within a tick group. I can't get my head around how to remove them or the entire tick group (see for the '???' in the code).
ticks.remove();
and/or
tickGroups.remove();
don't result in the expected outcome.