2

VivaGraphJS でグラフを作成しましたが、すべて問題ありませんが、グラフは動いています。constantLayout に関する例がありますが、ノードごとに位置を指定する必要がある問題があります。

コードは次のとおりです。

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript" src="../js/vivagraph.js"></script>
    <script type="text/javascript">
        function main () {
            // create a graph object.
            var graph = Viva.Graph.graph();

            add nodes and edges to the graph:
            graph.addLink(1, 2);
            graph.addLink(1, 3);
            graph.addLink(1, 4);
            var renderer = Viva.Graph.View.renderer(graph);
            renderer.run();
        }
    </script>

    <style type="text/css" media="screen">
        html, body, svg { width: 100%; height: 100%;}
    </style>
</head>
<body onload='main()'>
</body>
</html>

そして、定数 Layout に関するコードは次のとおりです。

<!DOCTYPE html>
<html>
    <head>
        <title>VivaGraphs constant layout demo page</title>
        <script src="../../dist/vivagraph.js"></script>

        <script type='text/javascript'>

            function onLoad() {
                var graph = Viva.Graph.graph(),
                    nodePositions = [{x : -50, y: 0}, {x : 0, y: -50}, {x : 50, y: 0}], // predefined node positions
                    layout = Viva.Graph.Layout.constant(graph),
                    renderer = Viva.Graph.View.renderer(graph, {
                                   layout     : layout, // use our custom 'constant' layout
                               }),

                    i, nodesCount = nodePositions.length; // convinience variables.

                // Add nodes
                for(i = 0; i < nodesCount; ++i) {
                    graph.addNode(i, nodePositions[i]);
                }

                // and make them connected in cycle:
                for (i = 0; i < nodesCount; ++i) {
                    graph.addLink(i % nodesCount, (i + 1) % nodesCount);
                }

                // set custom node placement callback for layout.
                // if you don't do this, constant layout performs random positioning.
                layout.placeNode(function(node) {
                    // node.id - points to its position but you can do your 
                    // random logic here. E.g. read from specific node.data
                    // attributes. This callback is expected to return object {x : .. , y : .. }
                    return nodePositions[node.id]; 
                });

                renderer.run();
            }
        </script>

        <style type="text/css" media="screen">
            body, html, svg { width: 100%; height: 100%; overflow: hidden; }
        </style>
    </head>
    <body onload="onLoad()">

    </body>

なにか提案を !?

私の問題をよく説明したいと思います。ありがとう

4

1 に答える 1