gpt4 book ai didi

javascript - 未捕获的类型错误 : d3. scaleOrdinal 不是函数

转载 作者:行者123 更新时间:2023-12-01 21:36:01 24 4
gpt4 key购买 nike

<分区>

我想根据域为散点图中的点着色,但出现错误:Uncaught TypeError: d3.scaleOrdinal is not a function

var colors =  ["#63b598", "#ce7d78", "#ea9e70"];
var color = d3.scaleOrdinal().domain(['a','b','c']).range(colors);
svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.attr("class", "dot")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap)
.style("fill", function(d){ return color(d.category)})

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