Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用 R 图形(Javascript Infovis Toolkit)时,我发现只有鼠标滚轮可以用作放大和缩小。任何人都可以帮助我如何使用两个按钮而不是鼠标滚轮来控制图形。
这是名为图的 Force 定向变体的示例
您可以更改示例中提供的 .zooming 值,在此设置中,我将其设置为 15,它的缩放速度相当慢。FD:
function zoom(delta) { if (fd) { var val = fd.controller.Navigation.zooming/1000; var ans = 1 - (delta * val); fd.canvas.scale(ans, ans); } }