gpt4 book ai didi

javascript - 在 D3 条形图中,y 轴序数比例未与条形正确对齐

转载 作者:行者123 更新时间:2023-11-28 05:47:49 27 4
gpt4 key购买 nike

我正在关注Mike's tutorial Let's make a bar graph part II , part III对于 d3 中的条形图。
我最终得到了一个水平条形图。
问题是我无法将 y 轴标签设置为与其各自的条形对齐,也许我的序数比例或设置条形的 y 位置有问题。
此外,图表条是从顶部开始而不是从基线开始。

	var options = {
margin: {
top: 0,
right: 30,
bottom: 0,
left: 50
},
width: 560,
height: 400,
element: 'body',
colors: ["#f44336", "#e91e63", "#673ab7", "#3f51b5", "#2196f3", "#03a9f4", "#00bcd4", "#009688", "#4caf50", "#8bc34a", "#cddc39", "#ffeb3b", "#ffc107", "#ff9800", "#ff5722", "#795548", "#607d8b"]
};

options.mWidth = options.width - options.margin.left - options.margin.right;
options.mHeight = options.height - options.margin.top - options.margin.bottom;

var _colorScale = d3.scale.ordinal()
// .domain([minValue,maxValue])
.range(options.colors);
var items = Math.round((Math.random() * 10) + 3);
var data = [];
for (var i = 0; i < items; i++) {
data.push({
label: 'label' + i,
value: Math.random() * 100
});
}

var _barThickness = 20;

var width = options.mWidth,
height = options.mHeight;

var svg = d3.select(options.element)
.append("svg")
.attr("width", width).attr("height", height)
.attr("viewBox", "0 0 " + options.width + " " + options.height)
//.attr("preserveAspectRatio", "xMinYMin meet")
.append("g");

svg.attr("transform", "translate(" + options.margin.left * 2 + "," + options.margin.top + ")");

var maxValue = 0,
minValue = 0;
for (var i = 0; i < data.length; i++) {
maxValue = Math.max(maxValue, data[i].value);
minValue = Math.min(minValue, data[i].value);
}

var scales = {
x: d3.scale.linear().domain([0, maxValue]).range([0, width / 2]),
y: d3.scale.ordinal().rangeRoundBands([0, height], .1)
}

scales.y.domain(data.map(function(d) {
return d.label;
}));

var bars = svg.append("g")
.attr("class", "bar");

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

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

var xaxis = svg.append("g")
.attr("class", "x axis")
.attr('transform', 'translate(' + 0 + ',' + height + ')')
.call(xAxis)
.append("text")
.attr("x", width / 2)
.attr("dy", "3em")
.style("text-anchor", "middle")
.text("Durations in hours");

var yaxis = svg.append("g")
.attr("class", "y axis")
.attr('transform', 'translate(' + 0 + ',' + 0 + ')')
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", -options.margin.left)
.attr("x", -height / 2)
.attr("dy", ".71em")
.style("text-anchor", "middle")
.text("Labels");

var bar = bars.selectAll('rect.bar').data(data);
var rect = bar.enter()
.append('g')
.attr('transform', function(d, i) {
return 'translate(0,' + parseInt(i * _barThickness + 2) + ')';
});

rect.append('rect')
.attr('class', 'bar')
.attr('fill', function(d) {
return _colorScale(d.value);
})

.attr('width', function(d) {
return scales.x(d.value);
})
.attr('height', _barThickness - 1)
.attr('y', function(d, i) {
return (i * _barThickness);
})
rect.append('text')
.attr('x', function(d) {
return scales.x(d.value) + 2;
})
.attr('y', function(d, i) {
return (i * _barThickness);
})
.attr('dy', '0.35em')
.text(function(d) {
return Math.round(d.value);
});
svg {
width: 100%;
height: 100%;
}
text {
font-size: 0.8em;
line-height: 1em;
}
path.slice {
stroke-width: 2px;
}
polyline {
opacity: .3;
stroke: black;
stroke-width: 2px;
fill: none;
}
.axis {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>

最佳答案

问题 1:

而不是这个:

  var _barThickness = 20;

这样做:

  var _barThickness = scales.y.rangeBand();

阅读here

如果你想调节粗细

而不是这个:

y: d3.scale.ordinal().rangeRoundBands([0, height], .1)

这样做:

y: d3.scale.ordinal().rangeRoundBands([0, height], .7)

问题2:

转换不正确。

而不是这个:

var rect = bar.enter()
.append('g')
.attr('transform', function(d, i) {
return 'translate(0,' + parseInt(i * _barThickness + 2) + ')';
});

这样做:

var rect = bar.enter()
.append('g');

问题3:

条形的 y 计算不正确。

  .attr('y', function(d, i) {
return (i * _barThickness);
})

这样做:

  .attr('y', function(d, i) {
return scales.y(d.label);
})

工作代码here

关于javascript - 在 D3 条形图中,y 轴序数比例未与条形正确对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38346020/

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