Currently when I create a node (by clicking on a canvas), the node is automatically assigned a label, which is 1-based (that is, the first node gets label "1", the second gets label "2" etc). However, the underlying gml graph has an "id" attribute, which is 0-based, that is, the node with label "1" has id "0", the node with label "2" has id "1" etc. This behavior is quite inconvenient, when I use generated gml files with external graph processing libraries.
Would it be possible to add a support for creating either 0-based labels or 1-based ids?
Thanks