d3 / d3

Bring data to life with SVG, Canvas and HTML. :bar_chart::chart_with_upwards_trend::tada:

Home Page:https://d3js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

d3__WEBPACK_IMPORTED_MODULE_0__.hierarchy is not a function

mbasakCinedigmInd opened this issue · comments

trying to use hierarchical bar graph but "d3__WEBPACK_IMPORTED_MODULE_0__.hierarchy is not a function" issue is showing

const root = d3
.hierarchy(data)
.sum(d => d.value)
.sort((a, b) => b.value - a.value)
.eachAfter(
d =>
(d.index = d.parent ? (d.parent.index = d.parent.index + 1 || 0) : 0)
);

"react": "^18.2.0"
"d3": "^3.5.17",