Global

Members

# _helpers

Helper Namespace ----------------- A useful batch of function dealing with DOM operations and types.

View Source utilities/parsers/gexf.js, line 20

# gexf

Exporting ----------

View Source utilities/parsers/gexf.js, line 460

Methods

# Edge(properties) → {object}

Edge structure. A function returning an object guarded with default value.
Parameters:
Name Type Description
properties object The edge properties.

View Source utilities/parsers/gexf.js, line 171

The guarded edge object.
object

# GMLParse(gml) → {Object}

Parses GML string.
Parameters:
Name Type Description
gml String

View Source utilities/parsers/gml.js, line 35

SyntaxError
Object

# GMLStringify(graph, optionsopt) → {String}

Stringifies GML object.
Parameters:
Name Type Attributes Description
graph Object
options Object <optional>

View Source utilities/parsers/gml.js, line 114

String

# Graph(xmlString) → {object}

Graph parser. This structure parse a gexf string and return an object containing the parsed graph.
Parameters:
Name Type Description
xmlString string The xml string of the gexf file to parse.

View Source utilities/parsers/gexf.js, line 200

The parsed graph.
object

# Node(properties) → {object}

Node structure. A function returning an object guarded with default value.
Parameters:
Name Type Description
properties object The node properties.

View Source utilities/parsers/gexf.js, line 146

The guarded node object.
object