gpt4 book ai didi

javascript - d3 force directed graph 删除文本光标

转载 作者:行者123 更新时间:2023-11-29 10:13:52 25 4
gpt4 key购买 nike

当我向 d3 力定向图布局中的节点添加文本时,当我将鼠标悬停在该节点上时,鼠标指针变为文本光标。有没有办法避免这种情况并始终保持常规指针?

普通指针:

Normal Pointer

文本光标:

enter image description here

这是一个 fiddle使用用于生成这些图像的代码以及代码:

var width = 960,
height = 500;

var color = d3.scale.category20();

var force = d3.layout.force()
.charge(-120)
.linkDistance(30)
.size([width, height]);

var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);

var drawGraph = function(graph) {
force
.nodes(graph.nodes)
.links(graph.links)
.start();

var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function(d) { return Math.sqrt(d.value); });

var gnodes = svg.selectAll('g.gnode')
.data(graph.nodes)
.enter()
.append('g')
.classed('gnode', true)
.call(force.drag);

var node = gnodes.append("circle")
.attr("class", "node")
.attr("r", 5)
.style("fill", function(d) { return color(d.group); });

node.append("title")
.text(function(d) { return d.name; });

var labels = gnodes.append("text")
.text(function(d) { return d.name; })
.attr('text-anchor', 'middle')
.attr('font-size', 8.0)
.attr('font-weight', 'bold')
.attr('y', 2.5)
.attr('fill', d3.rgb(50,50,50))
.attr('class', 'node-label')
.append("svg:title")
.text(function(d) { return d.name; });

force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });

gnodes.attr("transform", function(d) {
return 'translate(' + [d.x, d.y] + ')';
});
});
};

最佳答案

将以下 CSS 添加到您的文本元素中:

pointer-events: none;

这将阻止文本元素的任何鼠标事件,即光标不会改变,但您也无法选择文本。

完整演示 here .

关于javascript - d3 force directed graph 删除文本光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27088631/

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