gpt4 book ai didi

javascript - dcjs 序数条形图上的 y 轴?

转载 作者:行者123 更新时间:2023-11-27 23:08:06 26 4
gpt4 key购买 nike

使用 dc.js,我制作了一个带有数值的序数条形图。我选择序数图是因为我想为“未知”添加 x 勾。

问题出在 y 轴上。我无法弄清楚如何修复轴标签/缩放。如图所示,在[00,20,40,60,80]之间交替。我希望它有一个完整的系列。我尝试手动插入 y 刻度,但似乎没有 y 轴的访问器方法。下面是我的代码和捕获。

    ghg2Chart /* dc.barChart('#volume-month-chart', 'chartGroup') */
.width(FULL_CHART_WIDTH)
.height(FULL_CHART_HEIGHT)
.margins({top: 10, right: 20, bottom: 40, left: 20})
.dimension(GHG2)
.group(GHG2Group)
.elasticY(true)
.centerBar(true)
.gap(5)
.round(dc.round.floor)
.alwaysUseRounding(true)
.x(d3.scale.ordinal().domain(GHG2bins))
.xUnits(dc.units.ordinal)
.renderHorizontalGridLines(true)
//Customize the filter displayed in the control span
.filterPrinter(function (filters) {
var filter = filters[0], s = '';
s += numberFormat(filter[0]) + ' -> ' + numberFormat(filter[1]);
return s;
})
.filterHandler(function (dimension, filter) {
var selectedRange = ghg2Chart.filter();
dimension.filter(function (d) {
var range;
var match = false;
// Iterate over each selected range and return if 'd' is within the range.
for (var i = 0; i < filter.length; i++) {
range = filter[i];
if (d >= range - .1 && d <= range) {
match = true;
break;
}
}
return selectedRange != null ? match : true;
});
return filter;
});

enter image description here

最佳答案

图表的唯一问题是没有足够的空间容纳刻度线,因此标签被剪裁。

默认左边距为 30 像素:

https://github.com/dc-js/dc.js/blob/develop/web/docs/api-latest.md#dc.marginMixin+margins

尝试增加边距。偷懒的方法是:

chart.margins().left = 40;

但这有点令人困惑,所以更常见的方法是

chart.margins({top: 10, right: 50, bottom: 30, left: 40});

如果 dc.js 能够自动执行此操作,那就太棒了:

https://github.com/dc-js/dc.js/issues/713

但是根据文本大小进行布局相当困难,因此目前所有这些内容仍然是手动的(影响图例、轴标签等)

关于javascript - dcjs 序数条形图上的 y 轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36432760/

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