我想在条形图中的每个条形图上方添加值标签作为黑色文本。该代码的灵感来自http://bl.ocks.org/mbostock/3885304。我在下面用数据文件发布了它。我已尝试在index.html
末尾添加代码段以创建值标签,但我没有将任何文字添加到图表中。
的index.html
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.bar {
fill: steelblue;
shape-rendering: crispEdges;
}
.bar text {
//fill: black;
font: 11x sans-serif;
stroke: black;
}
.bar:hover {
fill: brown;
}
.axis {
font: 11x sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 20, bottom: 90, left: 55},
width = 400 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(10, "%");
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 + ")");
d3.tsv("data.tsv", type, function(error, data) {
x.domain(data.map(function(d) { return d.group; }));
//y.domain([0, d3.max(data, function(d) { return d.frequency; })]);
y.domain([0, 1]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
//.attr("dx", "-.8em")
//.attr("dy", ".15em")
.attr("dx", "-.6em")
.attr("dy", ".35em")
.attr("transform", function(d) {
return "rotate(-45)"
});
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("Frequency");
var bar = svg.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(d.group); })
.attr("width", x.rangeBand())
.attr("y", function(d) { return y(d.frequency); })
.attr("height", function(d) { return height - y(d.frequency); });
// A formatter for counts.
var formatCount = d3.format(",.0f");
// Add value labels
valueLabels = bar.append("text")
.attr("dy", ".75em")
.attr("y", 6)
.attr("x", function(d) { return x(d.group); })
.attr("text-anchor", "middle")
.text(function(d) { return formatCount(y(d.frequency)); });
});
function type(d) {
d.frequency = +d.frequency;
return d;
}
</script>
data.tsv
group frequency
1-9 weeks .036197
10-12 weeks .0457085
13 weeks .0714285
14 weeks .846666
答案 0 :(得分:1)
根据@Lars Kotthoff的参考资料和https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil的资料,我编写了以下内容:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.bar {
fill: steelblue;
shape-rendering: crispEdges;
}
.bar text {
//fill: black;
font: 8x sans-serif;
stroke: black;
}
.datalabel {
font-size: 10px;
fill: white;
}
.bar:hover {
fill: brown;
}
.axis {
font: 11x sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 20, bottom: 90, left: 55},
width = 400 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(10, "%");
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 + ")");
d3.tsv("interactions.tsv", type, function(error, data) {
x.domain(data.map(function(d) { return d.group; }));
//y.domain([0, d3.max(data, function(d) { return d.frequency; })]);
y.domain([0, 1]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
//.attr("dx", "-.8em")
//.attr("dy", ".15em")
.attr("dx", "-.6em")
.attr("dy", ".35em")
.attr("transform", function(d) {
return "rotate(-45)"
});
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("Frequency");
var bar = svg.selectAll(".bar")
.data(data)
.enter().append("g");
bar.append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(d.group); })
.attr("width", x.rangeBand())
.attr("y", function(d) { return y(d.frequency); })
.attr("height", function(d) { return height - y(d.frequency); });
bar.append("text")
.attr("class", "datalabel")
.attr("x", function(d) { return x(d.group) + x.rangeBand()/2; })
.attr("y", function(d) { return y(0) - 10; } )
.attr("dy", ".35em")
.attr("text-anchor", "middle")
.text(function(d) { return Math.ceil10(d.frequency*100, -1) + "%"; });
// A formatter for counts.
var formatCount = d3.format(",.0f");
});
function type(d) {
d.frequency = +d.frequency;
return d;
}
(function () {
/**
* Decimal adjustment of a number.
*
* @param {String} type The type of adjustment.
* @param {Number} value The number.
* @param {Integer} exp The exponent (the 10 logarithm of the adjustment base).
* @returns {Number} The adjusted value.
*/
function decimalAdjust(type, value, exp) {
// If the exp is undefined or zero...
if (typeof exp === 'undefined' || +exp === 0) {
return Math[type](value);
}
value = +value;
exp = +exp;
// If the value is not a number or the exp is not an integer...
if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
return NaN;
}
// Shift
value = value.toString().split('e');
value = Math[type]( + (value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
// Shift back
value = value.toString().split('e');
return + (value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
}
// Decimal round
if (!Math.round10) {
Math.round10 = function (value, exp) {
return decimalAdjust('round', value, exp);
};
}
// Decimal floor
if (!Math.floor10) {
Math.floor10 = function (value, exp) {
return decimalAdjust('floor', value, exp);
};
}
// Decimal ceil
if (!Math.ceil10) {
Math.ceil10 = function (value, exp) {
return decimalAdjust('ceil', value, exp);
};
}
})();
</script>