gpt4 book ai didi

javascript - 获取 d3.scale 是未定义的 - 在 codepen 中有效

转载 作者:技术小花猫 更新时间:2023-10-29 12:00:11 25 4
gpt4 key购买 nike

出于某种原因,我得到 d3.scale is undefined。 D3 已正确加载;我正在使用主要 d3js.org 网站上列出的那个 here.

我的 JS 文件处理 D3 代码:

InitiateChart_1();

function InitiateChart_1()
{
var data = [5,10,15,20,25];
var height = 500, width = 500;

var xScale = d3.scale.linear()
.domain([0,60])
.range([0,width]);

var canvas = d3.select("body")
.append("svg")
.attr("id","chart1")
.attr("width",width)
.attr("height",height);

var bars = canvas.selectAll("rect")
.data(data)
.enter()
.append("rect")
.attr("height",10)
.attr("width",function(d){return xScale(d);})
.attr("y",function(d,i){return i * 12;})
}

我的整个 HTML 文件:

<!doctype html>
<html>
<head>
<title>SHED Report Prototype</title>
<meta charset='utf-8'>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<script src='js/studentloans.js'></script>
</body>
</html>

非常感谢任何帮助。

最佳答案

codepen 使用的是版本 3;此代码使用 api 的版本 4。 d3.scale.linear 变成了 d3.scaleLinear

[...] However, there is one unavoidable consequence of adopting ES6 modules: every symbol in D3 4.0 now shares a flat namespace rather than the nested one of D3 3.x. For example, d3.scale.linear is now d3.scaleLinear, and d3.layout.treemap is now d3.treemap. [...]

- https://github.com/d3/d3/blob/master/CHANGES.md(强调我的)

关于javascript - 获取 d3.scale 是未定义的 - 在 codepen 中有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38859291/

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