我已经在力导向图上实现了缩放
svg.call(d3.behavior.zoom().on("zoom", rescale))
function rescale() {
var trans = d3.event.translate;
var scale = d3.event.scale;
svg.attr("transform",
"translate(" + trans + ")"
+ " scale(" + scale + ")");
}
可以使用鼠标滚轮或双击它来放大图形。我需要一些建议如何在不使用鼠标滚轮的情况下实现缩小。