gpt4 book ai didi

javascript - 一些 Raphael 标签没有出现在 Linechart Mouseover 上

转载 作者:行者123 更新时间:2023-11-30 18:22:34 25 4
gpt4 key购买 nike

可以看出,第 2、10 和 13 个标签(拉斐尔语言中的标签)不会出现在鼠标悬停在它们各自的图形点上(至少不会出现在可视区域中)。当您添加更多点时,问题会变得更糟(即缺少更多标签)。任何人都知道问题可能是什么?

var r = Raphael("holder"),
txtattr = {
font: "12px sans-serif"
};
r.text(65, 25, "Basis Points").attr(txtattr);

lines = r.linechart(100, 40, 600, 260, [
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
], [
[12, 32, 23, 15, 17, 27, 22, 12, 32, 23, 15, 17, 27]
],
{
nostroke: false,
axis: "0 0 1 1",
symbol: "circle",
smooth: true
}).hoverColumn(function ()
{
this.tags = r.set();

for (var i = 0, ii = this.y.length; i < ii; i++)
{
this.tags.push(
r.tag(this.x, this.y[i], this.values[i], 160, 10).insertBefore(this)
.attr([
{
fill: "#fff"
},
{
fill: this.symbols[i].attr("fill")
}]));
}
}, function ()
{
this.tags && this.tags.remove();
});

lines.symbols.attr(
{
r: 3
});
r.width = 650;

jsfiddle

最佳答案

问题是由于正确计算了悬停列宽度,下面的错误报告中描述了代码修复:

Linechart Column Width Bug

关于javascript - 一些 Raphael 标签没有出现在 Linechart Mouseover 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11710204/

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