var sigmaInstance = new sigma('graphContainer');
sigmaInstance.graph.addNode({
id: 'A',
label: 'A',
x: 0,
y: 0,
size: 1,
color: '#ff0000'
});
sigmaInstance.graph.addNode({
id: 'B',
label: 'B',
x: 10,
y: 0,
size: 1,
color: '#ff0000'
});
sigmaInstance.graph.addEdge({
id: 'E1',
source: 'A',
target: 'B',
type: 'arrow',
size: 20
});
sigmaInstance.refresh();