2

C#でDEX Graphデータベースを使い始めました。これまでのところ、簡単な例を実行できましたが、グラフをエクスポートする方法がわかりません。

他の視覚化ツールで表示するために、グラフを Graphviz 形式にエクスポートしたいと考えています。グラフのエクスポートの例を見つけることができる良いリソースを知っている人はいますか? または、おそらくグラフをエクスポートしてコードを共有できる人がいますか?

私はあなたの助けにとても感謝しています.

4

2 に答える 2

4

この方法で使用できる単純なデフォルトのエクスポーターがあります。

DefaultExport exp = new DefaultExport();
graph.Export("exported.gv", ExportType.Graphviz, exp);

ただし、より良い出力を得るには、ExportManagerクラスを拡張する独自のエクスポーターをコーディングする必要がある場合があります。

また、問題がある場合は、会社のフォーラムで質問できます。

于 2012-06-01T12:27:45.690 に答える
0

独自のエクスポーターを作成するには、次のようにする必要があります。

public class MyExport : ExportManager
    {
        private Graph g = null;

        public MyExport() {
        }

        public override void Prepare(Graph graph) {
            // This method will be called once at the beginning of the export.
            // So we keep the graph being exported.
            g = graph;

        }

        public override void Release() {
            // Called once at the end of the export process.
        }

        public override bool GetGraph(GraphExport graphExport) {
            // Called once to get the Graph details (a label)
            graphExport.SetLabel("[MyExport] MyGraph");
            return true;
        }

        public override bool EnableType(int type) {
            // Will be called once for each type to allow or deny the export of
            // the nodes/edges of each type
            return true; // We enable the export of all types
        }


        public override bool GetNode(long node, NodeExport nodeExport) {
            // Called once for each node of an allowed type to get it's export definition.
            // The definition will be used if it returns true, or the default
            // node type definition from getNodeType will be used if this method
            // returns false.
            // It can set the label, shape, color, ...
            nodeExport.SetLabel("[MyExport] MyNode " + node);
            return true;
        }

        public override bool GetNodeType(int type, NodeExport nodeExport) {
            // Used to get a node type generic export definition.
            // Called once for each node only if the call to GetNode returned false.
            // It can set the label, shape, color, ...
            nodeExport.SetLabel("[MyExport] MyNodeType " + type);
            return true;
        }

        public override bool GetEdge(long edge, EdgeExport edgeExport) {
            // Called once for each edge of an allowed type to get it's export definition.
            // The definition will be used if it returns true, or the default
            // edge type definition from getEdgeType will be used if this method
            // returns false.
            // It can set the label, shape, color, ...
            edgeExport.SetLabel("[MyExport] MyEdge " + edge);
            return true;
        }

        public override bool GetEdgeType(int type, EdgeExport edgeExport) {
            // Used to get an edge type generic export definition.
            // Called once for each edge only if the call to GetEdge returned false.
            // It can set the label, shape, color, ...
            edgeExport.SetLabel("[MyExport] MyEdgeType " + type);
            return true;
        }
    } 

残念ながら、graphviz の場合、エクスポーターはラベルの変更のみを受け入れます。色と形については、... ygraphml エクスポートの使用を検討できますか?

于 2012-06-04T08:42:32.680 に答える