gpt4 book ai didi

jquery - 条形位置的外观不正确 - d3.js

转载 作者:行者123 更新时间:2023-12-01 01:32:50 24 4
gpt4 key购买 nike

我正在尝试在 angular.js - ionic 应用程序中使用 d3.js 生成条形图。条形图定位不正确。这是屏幕截图

Incorrect positioning of bars

但我需要类似的

enter image description here

这是 JavaScript 代码

var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = $("#chart_div").width() - margin.left - margin.right,
height = $("#chart_div").height() - 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 + ")");

var data = [{"scenario":"Expected","hours":32},{"scenario":"Actual","hours":16}];

x.domain(data.map(function(d) { return d.scenario; }));
y.domain([0, d3.max(data, function(d) { return d.hours; })]);

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("Hours");

svg.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(d.scenario); })
.attr("width", x.rangeBand())
.attr("y", function(d) { return y(d.hours); })
.attr("height", function(d) { return height - y(d.hours); });

function type(d) {
d.hours = +d.hours;
return d;
}

创建的 fiddle 位于 d3 chart请帮帮我

最佳答案

当我遇到同样的问题时,我意识到“矩形”没有采用正确的宽度和高度尺寸。

尝试更改 bar 类(更改名称),这可能与 css 库中的另一个现有类冲突。

关于jquery - 条形位置的外观不正确 - d3.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31159426/

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