我试图在以下github存储库中获取这些alampros Gantt Chart示例,以便我可以稍微使用它们https://github.com/alampros/Gantt-Chart/
我对D3完全陌生,但在尝试运行示例时,我收到了上述错误。我一直在网上搜索解决方案,但一直找不到解决方案。以下函数抛出了错误:
timeAxisRenderer.draw = function(node){
node.transition().call(xAxis).selectAll('text')
.attr('transform', function(d) {
var xOffset = 3 + this.getBBox().width/2;
var yOffset = 5 - this.getBBox().height;
return 'translate('+xOffset+','+yOffset+')';
});
}
请提出任何意见!?