The dblclick event. paneIndex is the pane under the pointer. A listener that acts on the double-click itself (opening a text editor for the selected drawing, say) sets handled to true, and the chart's own action is skipped for that press.

interface DoubleClickEvent {
    handled: boolean;
    paneIndex: number;
    x: number;
    y: number;
}

Properties

Properties

handled: boolean
paneIndex: number
x: number
y: number