You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graph graphname {
// This attribute applies to the graph itself
size="1,1";
// The label attribute can be used to change the label of a node
a [label="Foo"];
// Here, the node shape is changed.
b [shape=box];
// These edges both have different line properties
a -- b -- c [color=blue];
b -- d [style=dotted];
}
Load directed.dot in SocNetV. All network edges appear blue. The default edgecolor should be changed to blue.
Create a new edge by mouse (middle/double clicking). The new edge takes the previously set initEdgeColor (default: black) rather than the color set by the network file.
The text was updated successfully, but these errors were encountered:
Save this network to some file directed.dot:
graph graphname {
// This attribute applies to the graph itself
size="1,1";
// The label attribute can be used to change the label of a node
a [label="Foo"];
// Here, the node shape is changed.
b [shape=box];
// These edges both have different line properties
a -- b -- c [color=blue];
b -- d [style=dotted];
}
Load directed.dot in SocNetV. All network edges appear blue. The default edgecolor should be changed to blue.
Create a new edge by mouse (middle/double clicking). The new edge takes the previously set initEdgeColor (default: black) rather than the color set by the network file.
The text was updated successfully, but these errors were encountered: