source: node_modules/d3-sankey/src/sankeyLinkHorizontal.js

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 291 bytes
Line 
1import {linkHorizontal} from "d3-shape";
2
3function horizontalSource(d) {
4 return [d.source.x1, d.y0];
5}
6
7function horizontalTarget(d) {
8 return [d.target.x0, d.y1];
9}
10
11export default function() {
12 return linkHorizontal()
13 .source(horizontalSource)
14 .target(horizontalTarget);
15}
Note: See TracBrowser for help on using the repository browser.