Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • VertexViewerMarkup

Index

Properties

arrowTemplateId?: string

An HTML template that describes the HTML to use for new arrow markup. It's expected that the template contains a <vertex-viewer-markup-arrow>.

circleTemplateId?: string

An HTML template that describes the HTML to use for new circle markup. It's expected that the template contains a <vertex-viewer-markup-circle>.

disabled?: boolean

If true, disables adding or editing of markup through user interaction.

endLineAnchorStyle?: LineAnchorStyle

The style of the ending anchor. This defaults to 'arrow-triangle.'

freeformTemplateId?: string

An HTML template that describes the HTML to use for new freeform markup. It's expected that the template contains a <vertex-viewer-markup-freeform>.

selectNew?: boolean

Indicates if new markup should be automatically selected.

selectedMarkupId?: string

The ID of the markup that is selected.

startLineAnchorStyle?: LineAnchorStyle

The style of the starting anchor. This defaults to none.

tool?: ViewerMarkupToolType

The type of markup to perform.

viewer?: HTMLVertexViewerElement

The viewer to connect to markup. If nested within a , this property will be populated automatically.

Methods

  • onMarkupAdded(event: VertexViewerMarkupCustomEvent<HTMLVertexViewerMarkupArrowElement | HTMLVertexViewerMarkupCircleElement | HTMLVertexViewerMarkupFreeformElement>): void
  • onMarkupChanged(event: VertexViewerMarkupCustomEvent<HTMLVertexViewerMarkupArrowElement | HTMLVertexViewerMarkupCircleElement | HTMLVertexViewerMarkupFreeformElement>): void
  • onMarkupRemoved(event: VertexViewerMarkupCustomEvent<HTMLVertexViewerMarkupArrowElement | HTMLVertexViewerMarkupCircleElement | HTMLVertexViewerMarkupFreeformElement>): void
  • onMarkupSelectionChanged(event: VertexViewerMarkupCustomEvent<undefined | HTMLVertexViewerMarkupArrowElement | HTMLVertexViewerMarkupCircleElement | HTMLVertexViewerMarkupFreeformElement>): void
  • Dispatched when markup selection changes. Will either be the selected element or undefined indicating that selection was cleared.

    Parameters

    • event: VertexViewerMarkupCustomEvent<undefined | HTMLVertexViewerMarkupArrowElement | HTMLVertexViewerMarkupCircleElement | HTMLVertexViewerMarkupFreeformElement>

    Returns void