UserSyncFrontend / node_modules /@plotly /d3-sankey /src /sankeyLinkHorizontal.js
Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
e7b2eb4 verified
Raw
History Blame Contribute Delete
291 Bytes
import {linkHorizontal} from "d3-shape";
function horizontalSource(d) {
return [d.source.x1, d.y0];
}
function horizontalTarget(d) {
return [d.target.x0, d.y1];
}
export default function() {
return linkHorizontal()
.source(horizontalSource)
.target(horizontalTarget);
}