I am using below package
https://goodguydaniel.com/react-d3-graph/docs/index.html
https://www.npmjs.com/package/react-d3-graph
my issue is my label is not showing between two nodes
why ?
https://codesandbox.io/s/zealous-volhard-lqyvi here is my code
const data = {
nodes: [{ id: "Harry" }, { id: "Sally" }, { id: "Alice" }],
links: [
{ source: "Harry", target: "Sally", label: "dddddds" },
{ source: "Harry", target: "Alice", label: "dddddds" }
]
};
can we increase the initial zoom level ?
You need to add
labelProperty
to theconfig
to showlabel
. you can providetarget
/source
/label
tolabelProperty
like socan we increase the initial zoom level ?
No, not yet. check out the issue
jsx