I am new to d3 and observable, I tried creating this force graph based on an existing example published on the observable website Mobile Patent Suits / Masber / Observable
I reduce the CSV file for simplicity with the content below:
source
target
type
Microsoft
Amazon
licensing
Microsoft
HTC
licensing
Microsoft
Amazon
suit
My issue is that links that overlap (same source and target but different type) won’t show on the graph. For instance, in my example, I have |Microsoft|Amazon|suit| with the same source and target but then |Microsoft|Amazon|licensing| and one of them won’t be seen. This is an issue since I want to show the data for all links.
Any idea how can I tell d3 to show links with the same source and target but with different type?