gpt4 book ai didi

d3.js - d3 轴方向 : center

转载 作者:行者123 更新时间:2023-12-04 15:13:27 37 4
gpt4 key购买 nike

在 D3 中,如何将轴放在图形的中间或中心? documentation说“只有上/下/左/右”。

我知道我的图表的尺寸,假设它是 400 像素 x 400 像素。在 Protovis 我使用
vis.add(pv.Rule).bottom(200)
从底部向上放置一个轴 200px。我怎样才能在 D3 中做到这一点?

最佳答案

您可以以任何方式转换轴。方向仅指刻度和数字位于哪一侧。

见例如http://alignedleft.com/tutorials/d3/axes/

svg.append("g")
.attr("class", "axis")
.attr("transform", "translate(0," + (h - padding) + ")")
.call(xAxis);

您只需要将参数更改为转换即可获得所需的任何内容。

关于d3.js - d3 轴方向 : center,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13895895/

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