gpt4 book ai didi

d3.js - d3 轴刻度对齐

转载 作者:行者123 更新时间:2023-12-04 19:12:20 25 4
gpt4 key购买 nike

我有一个 d3 条形图,轴刻度线位于条形下方的中心(如我所料)。在这种情况下,我实际上想左对齐轴刻度并将刻度放在条形的左边缘下方。那可能吗? enter image description here

编辑:用于构建轴的 Javascript

// note width is just the width of the chart
var xScale = d3.scale.ordinal().rangeRoundBands([0,width], .1);
var xAxis = d3.svg.axis().scale(xScale).orient("bottom");

最佳答案

这是左对齐刻度的示例。

http://bl.ocks.org/mbostock/6186172

这个想法是,在你创建刻度后,你收集它们并对齐它们:

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.attr("y", 6)
.attr("x", 6)
.style("text-anchor", "start");

关于d3.js - d3 轴刻度对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13654658/

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