gpt4 book ai didi

javascript - 将匿名函数与 D3 SVG 符号一起使用时出现 "Property does not exist on type {}"错误

转载 作者:行者123 更新时间:2023-11-30 08:28:49 38 4
gpt4 key购买 nike

我正在尝试创建 D3 SVG 符号,符号形状根据数据中的类别属性动态设置。这将是 PowerBI 中自定义视觉对象的一部分,因此我使用的是 Typings 库。

根据我在网上看到的例子,下面的代码应该可以工作。

var milestoneSymbols = this.milestoneContainer.selectAll('.path').data(viewModel.milestones);
milestoneSymbols.enter().append('path');
milestoneSymbols.attr('d', d3.svg.symbol()
.size(25)
.type( function(d){ return d.typeSymbol})
);
milestoneSymbols.attr("transform", function(d,i) {
return "translate("+ xScale(d.date) + ","
+ ((i % heightGroups) * (milestoneContainerHeight/heightGroups) + margins.top )
+ ")";
});
milestoneSymbols.style("stroke", "function(d) { return findTaskTypeShape(d.label).color; }
.style("stroke-width", 1)
.style("fill", function(d) { return findTaskTypeShape(d.label).color; });

但我收到错误 Property 'typeSymbol' does not exist on type '{}' for the code .type( function(d){ return d.typeSymbol})d 似乎在 type() 中不可用,因为它正在 d3.svg.symbol() 代码中使用。如果我用像“square”这样的字符串文字替换匿名函数,它就可以工作。

如何解决这个问题?

最佳答案

Typescript 对您的数据对象类型一无所知。您可以定义数据对象类型,也可以尝试使用任何类型:

milestoneSymbols.attr('d', d3.svg.symbol() 
.size(25)
.type( function(d: any){ return d.typeSymbol;})

关于javascript - 将匿名函数与 D3 SVG 符号一起使用时出现 "Property does not exist on type {}"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40951995/

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