使用 Layout.Force 时在原型中缩放

发布于 2024-11-17 02:10:57 字数 1138 浏览 0 评论 0原文

我正在使用 protovis 网站上找到的示例来显示图形的节点 http://vis .stanford.edu/protovis/ex/force.html

例如,我根本无法使用 2 倍缩放来初始化图形,因此启动时它看起来不会那么小。

<script type="text/javascript+protovis">

    var w = document.body.clientWidth,
        h = document.body.clientHeight,
        colors = pv.Colors.category19();

    var vis = new pv.Panel()
        .width(w)
        .height(h)
        .fillStyle("white")
        .event("mousedown", pv.Behavior.pan())
        .event("mousewheel", pv.Behavior.zoom());

    var force = vis.add(pv.Layout.Force)
        .nodes(miserables.nodes)
        .links(miserables.links);

    force.link.add(pv.Line);

    force.node.add(pv.Dot)
        .size(function(d) (d.linkDegree + 4) * Math.pow(this.scale, -1.5))
        .fillStyle(function(d) d.fix ? "brown" : colors(d.group))
        .strokeStyle(function() this.fillStyle().darker())
        .lineWidth(1)
        .title(function(d) d.nodeName)
        .event("mousedown", pv.Behavior.drag())
        .event("drag", force);

    vis.render();

</script>

I am using the example found on protovis site to display the nodes of a graph http://vis.stanford.edu/protovis/ex/force.html

I simply cannot initialize the graph with a zoom of 2x for example, so it won't look that small when started.

<script type="text/javascript+protovis">

    var w = document.body.clientWidth,
        h = document.body.clientHeight,
        colors = pv.Colors.category19();

    var vis = new pv.Panel()
        .width(w)
        .height(h)
        .fillStyle("white")
        .event("mousedown", pv.Behavior.pan())
        .event("mousewheel", pv.Behavior.zoom());

    var force = vis.add(pv.Layout.Force)
        .nodes(miserables.nodes)
        .links(miserables.links);

    force.link.add(pv.Line);

    force.node.add(pv.Dot)
        .size(function(d) (d.linkDegree + 4) * Math.pow(this.scale, -1.5))
        .fillStyle(function(d) d.fix ? "brown" : colors(d.group))
        .strokeStyle(function() this.fillStyle().darker())
        .lineWidth(1)
        .title(function(d) d.nodeName)
        .event("mousedown", pv.Behavior.drag())
        .event("drag", force);

    vis.render();

</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伏妖词 2024-11-24 02:10:57

您必须按照所述使用 pv.Panel 的 Transform() 方法

vis.transform(pv.Transform.identity.scale(2));

You'll have to use the transform() method of pv.Panel as described here. Put the following line right behind vis.render();, it should work. Maybe you'll need to translate it additionally though.

vis.transform(pv.Transform.identity.scale(2));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文