我已经成功地为 X 轴和 Y 轴创建了标签。我还成功地为图表添加了标题。我的问题是,如果我修改图表的边距,标签位置就会混乱。
我更改图表边距的片段:
var margin = {top: 60, right: 60, bottom: 60, left:120}
我在哪里创建标签的片段:
//Create Title
svg.append("text")
.attr("x", w / 2 )
.attr("y", 0)
.style("text-anchor", "middle")
.text("Title of Diagram");
//Create X axis label
svg.append("text")
.attr("x", w / 2 )
.attr("y", h + margin.bottom)
.style("text-anchor", "middle")
.text("State");
//Create Y axis label
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 0-margin.left)
.attr("x",0 - (h / 2))
.attr("dy", "1em")
.style("text-anchor", "middle")
.text("Revenue");
JsFiddle:http:
//jsfiddle.net/u63T9/
这是我愿意接受的另一种选择:
我基本上是在利用尺度来找到基本坐标。然后我添加或采取一点,直到我对位置感到满意。这种方法实际上跟上了边距的变化。
//Create title
svg.append("text")
.attr("x", w / 2 )
.attr("y", yScale(d3.max(input, function(d) { return d.CustomerCount; })) - 20 )
.style("text-anchor", "middle")
.text("Title of Graph");
//Create X axis label
svg.append("text")
.attr("x", w / 2 )
.attr("y", yScale(0) + 40 )
.style("text-anchor", "middle")
.text("State");
//Create Y axis label
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y", xScale(0) - 80 )
.attr("x",0 - (h / 2))
.attr("dy", "1em")
.style("text-anchor", "middle")
.text("Revenue");