Home > @i2analyze/notebook-sdk > visual > IEdgeSummary
visual.IEdgeSummary interface
An edge summary, which is a collection of edges that share the same 'from' and 'to' nodes and link type.
Signature:
interface IEdgeSummary
Introduced: version 1.6
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| edges | readonly |
data.IKeyedReadOnlyCollection<ElementId, IEdge> | Gets the edges in the edge summary. |
| fromEnd | readonly |
INode | Gets the node at the 'from' end of the edge summary. |
| id | readonly |
ElementId | Gets the identifier of the edge summary. |
| label | readonly |
string | undefined | Gets the label of the edge summary, or undefined if there is no explicit label. |
| linkType | readonly |
schema.IChartLinkType | Gets the link type of the edges in the edge summary. |
| toEnd | readonly |
INode | Gets the node at the 'to' end of the edge summary. |