Interface Selectors

Hierarchy

Index

Properties

Properties

public select: { (selector: string): D3.Selection; (element: EventTarget): D3.Selection; }

Select an element from the current document

(): Selection

Selects the first element that matches the specified selector string

Returns

Selection

(): Selection

Selects the specified node

Returns

Selection

public selectAll: { (selector: string): D3.Selection; (elements: EventTarget[]): D3.Selection; }

Select multiple elements from the current document

(): Selection

Selects all elements that match the specified selector

Returns

Selection

(): Selection

Selects the specified array of elements

Returns

Selection