作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有 a graph where the x-axis tick labels are very long strings ,所以我想交替填充刻度(文本和 x 轴之间的垂直距离),以便刻度标签不重叠。
我知道这可以通过选择刻度元素并应用变换属性来实现后渲染。但我想这样做:
var xAxis = d3.svg.axis()
.scale(x0)
.orient("bottom")
.tickSize(0)
.tickPadding(function(i) {
// some logic here to determine the alternating-height strategy by index, e.g.
return i % 2 ? 20 : 30;
});
这在 d3 中不起作用——文档 ( https://github.com/mbostock/d3/wiki/SVG-Axes#wiki-tickPadding ) 说 tickPadding 只需要像素数。有一个更好的方法吗? Monkey 补丁 d3 的 axis.tickPadding 函数获取一个函数或一个数字,然后在绘制刻度时应用该函数?
最佳答案
有关源代码补丁,请参阅:
https://github.com/adonomay/d3/commit/bfdb36fa17806666775c6804b86eb10bea3b3393
另一种解决方法是在呈现后手动换行文本:
关于javascript - d3js : supply a function to tickPadding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20083015/
假设我有 a graph where the x-axis tick labels are very long strings ,所以我想交替填充刻度(文本和 x 轴之间的垂直距离),以便刻度标签不重
我是一名优秀的程序员,十分优秀!