ah, thank you. now, I have another question about labelling and coloring.
my default definition for my attributes look like this:
<key id="d0" for="node" attr.name="color" attr.type="string">
<default>yellow</default>
</key>
<key id="d1" for="edge" attr.name="color" attr.type="string">
<default>black</default>
</key>
<key id="d2" for="node" attr.name="ID" attr.type="string">
<default>-1</default>
</key>
then I have for example a node like this:
<node id = "z">
<data key="d0">green</data>
<data key="d2">z</data> <!-- ID -->
</node>
but in my graph, all nodes and edges look the same(I can only see the attributes and their values on the left side in the structure box). can't I change the look this way?
thanks in advance