gpt4 book ai didi

javascript - 如何更改 D3.js 中点的颜色以反射(reflect) y 尺度上的数据?

转载 作者:搜寻专家 更新时间:2023-11-01 04:23:32 25 4
gpt4 key购买 nike

我从 d3.js 开始,并决定构建一个天气图,但点(或节点?)不会改变颜色,因为它们应该改变颜色,即不是根据温度(y 尺度上的位置),而是根据它们在x 规模?我究竟做错了什么?

<!DOCTYPE html>
<meta charset="utf-8">
<style>

body {
font: 10px sans-serif;
}

.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}

.line {
fill: none;
stroke: steelblue;
stroke-width: 2.5px;
}

.dot {
fill: steelblue;
stroke: steelblue;
stroke-width: 1.5px;
}

</style>
<body>
<script src="d3/d3.min.js" charset="utf-8"></script>
<script>

var tooltip = d3.select('body').append('div')
.style('position','absolute')

var data = [
[new Date(1961, 0, 1), 6.3],
[new Date(2014, 0, 1), 9.4]
];

var margin = {top: 20, right: 30, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;

var tooltip = d3.select('body').append('div')
.style('position', 'absolute')
.style('padding', '0 10px')

var colors = d3.scale.linear()
.domain([5, 20])
.range(['#000000','#ffffff'])

var x = d3.time.scale()
.domain([new Date(1960, 0, 1), new Date(2015, 0, 1)])
.range([0, width]);

var y = d3.scale.linear()
.domain([5, 10])
.range([height, 0]);

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");

var yAxis = d3.svg.axis()
.scale(y)
.orient("left");

var line = d3.svg.line()
.interpolate("monotone")
.x(function(d) { return x(d[0]); })
.y(function(d) { return y(d[1]); });

var svg = d3.select("body").append("svg")
.datum(data)
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Teplota (ºC)");

svg.append("path")
.attr("class", "line")
.attr("d", line);

svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.style('stroke', function(d,i) {
return colors(i);
})
.style('fill', function(d,i) {
return colors(i);
})
.attr("class", "dot")
.attr("cx", line.x())
.attr("cy", line.y())
.attr("r", 1.5)

.on("mouseover", function(d) {
tooltip.html(d[1] + 'ºC')
.style('left', (d3.event.pageX - 35) + 'px')
.style('top', (d3.event.pageY - 30) + 'px')
.style('font-size', '15px')

});
</script>

最佳答案

您的点当前正在根据数据的数组索引进行着色。这样做会根据时间序列(x 轴)为点着色。

为了根据温度为您的圆圈着色,请像这样设置对颜色函数的调用。这将引用当前数组迭代中的第二个数据点(温度)。

svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.style('stroke', function(d,i) {
return colors(d[1]);
})
.style('fill', function(d,i) {
return colors(d[1]);
})

关于javascript - 如何更改 D3.js 中点的颜色以反射(reflect) y 尺度上的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34595124/

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