gpt4 book ai didi

d3.js - TypeError : d3. forceSimulation().size 不是函数 (d3 v4)

转载 作者:行者123 更新时间:2023-12-04 03:09:59 25 4
gpt4 key购买 nike

我刚开始使用 d3.js 并复制了 d3.js v3 的示例并尝试将其改编为 v4。我有以下部分代码:

var width = 960,
height = 500,
fill = d3.schemeCategory20;

// another code

var force = d3.forceSimulation()
.size([width, height]) // the error occurred at this row
.nodes([{}])
.linkDistance(50)
.charge(-200)
.on("tick", tick);

d3.forceSimulation() 是 v4 的运算符,所以我的问题是:“我应该如何将以下所有运算符与新的 d3.forceSimulation() 一起使用d3.js 版本 4 的语法”?

提前致谢

最佳答案

只是因为 size() 不是 simulation object methodthe docs了解更多信息

关于d3.js - TypeError : d3. forceSimulation().size 不是函数 (d3 v4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46025766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com