dc.js BarChart yAxis范围加填充

时间:2016-12-06 01:38:59

标签: d3.js dc.js

我有一个堆栈条形图,并通过

添加了一个大纲
.dc-chart rect.bar {stroke: black;}

我也定义了

.elasticY(true)

条形顶部的黑色轮廓(xAxis 0)与条形顶部(xAxis 2)相比被像素切断。反正是否有一点填充y max范围,所以我可以看到轮廓并仍然保持弹性?

enter image description here

1 个答案:

答案 0 :(得分:2)

奇怪的是,它被称为yAxisPaddingand it's documented here。它适用于elasticY

我猜Markdown文档只需浏览一下即可。如果您知道可以定义函数的特定类或mixin,HTML documentation会更好。 (需要一些练习。)

您可以在域单位中使用数字:

chart.yAxisPadding(10)

或百分比,作为字符串:

chart.yAxisPadding("5%")

以域单位can lead to some surprises, though填充。