我正在尝试通过从.csv文件中获取数据来在D3中创建一些矩形。
出现矩形,但位置不正确。例如,我希望第一个开始于x = 0和y = 0,但相反,y是错误的。而且我也无法从文件中正确读取字母。它只是在左轴上显示“ NaN”,但我希望它们出现在每个矩形内。
我的.csv文件是这个
x,y,width,height,color,txt
0,0,50,50,purple,A
80,40,100,400,blue,B
300,500,100,200,navy,C
320,306,100,100,green,D
800,500,50,50,red,E
850,550,150,100,gray,F
40,550,500,50,indigo,G
100,200,300,320,yellow,H
我也尝试像平移轴一样平移所有三角形,但是什么也没有发生,它们消失了。
<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */
.rect { fill-opacity:.50; stroke: rgb(60,100,200); stroke-width:1px;}
</style>
<body>
<!-- load the d3.js library -->
<script src="//d3js.org/d3.v4.min.js"></script>
<script>
// set the dimensions and margins of the graph
var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = 1074 - margin.left - margin.right,
height = 818 - margin.top - margin.bottom;
// set the ranges
var x = d3.scaleLinear()
.range([0, width]);
var y = d3.scaleLinear()
.range([height, 0]);
// append the svg object to the body of the page
// append a 'group' element to 'svg'
// moves the 'group' element to the top left margin
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");
// get the data
d3.csv("rectangles.csv", function(error, data) {
if (error) throw error;
// format the data
data.forEach(function(d) {
d.txt = +d.txt;
});
// Scale the range of the data in the domains
x.domain([0, d3.max(data, function(d) { return d.x; })]);
y.domain([0, d3.max(data, function(d) { return d.y; })]);
// append the rectangles for the bar chart
svg.selectAll(".rect")
.data(data)
.enter().append("rect")
.attr("class", "rect")
.attr("x", function(d) { return x(d.x); })
.attr("y", function(d) { return y(d.y); })
.attr("width", function(d) { return d.width })
.attr("height", function(d) { return d.height})
.attr("fill", function(d) {return d.color});
svg.selectAll("text")
.data(data)
.enter().append("text")
.attr("fill","red")
.attr("y", function(d) { return y(d.y); })
.text(function(d) {return d.txt});
// add the x Axis
svg.append("g")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));
// add the y Axis
svg.append("g")
.call(d3.axisLeft(y));
});
</script>
</body>
我想创建两个轴内的所有矩形,并在其中包含字母。
答案 0 :(得分:0)
对于您的rects
,正确的y位置是:
.attr("y", function(d) { return y(d.y) - d.height; })
因为您希望将rect
的底部放置在您的y位置。
您的“ txt”显示为NAN,因为您将其强制转换为以下行中的数字:
data.forEach(function(d) {
d.txt = +d.txt;
});
只需删除它们。
要放置文本,正确的计算公式是:
.attr("y", function(d) { return y(d.y) - d.height/2; })
.attr("x", function(d) { return x(d.x) + d.width/2; })
将其移动到rects
的中心。
这是全部放在一起。
编辑
所以这比我想的要复杂。真正的y计算为:
.attr("y", function(d) { return y(d.y) - (height - y(d.height)); })
高度为:
.attr("height", function(d) { return height - y(d.height); });
更新example。