Type Alias EdgeParameters

EdgeParameters: {
    id?: string;
    parent?: Cell | null;
    source?: Cell | null;
    style?: CellStyle;
    target?: Cell | null;
    value?: EdgeParametersValue;
}

Type declaration

  • Optionalid?: string

    Optional string that defines the id of the new edge. If not set, the id is auto-generated when creating the vertex.

  • Optionalparent?: Cell | null

    The parent of the new edge. If not set, use the default parent.

  • Optionalsource?: Cell | null

    The Cell that defines the source of the edge.

  • Optionalstyle?: CellStyle
  • Optionaltarget?: Cell | null

    The Cell that defines the target of the edge.

  • Optionalvalue?: EdgeParametersValue

    Object to be used as the user object which is generally used to display the label of the vertex. The default implementation handles string object.