Chartbreaker
    Preparing search index...

    Type Alias LegendEntry_Events

    type LegendEntry_Events = {
        buttonClicked: (
            event: Event | null,
            point: Point,
            button: LegendEntry_Button | "error",
        ) => void;
        clicked: (
            event: Event | null,
            point: Point,
            button: number | undefined,
        ) => void;
        contextMenu: (event: Event | null, point: Point) => void;
        doubleClicked: (
            event: Event | null,
            point: Point,
            button: number | undefined,
        ) => void;
    }
    Index
    buttonClicked: (
        event: Event | null,
        point: Point,
        button: LegendEntry_Button | "error",
    ) => void

    Fired when a button of the entry was clicked

    clicked: (event: Event | null, point: Point, button: number | undefined) => void

    Fired when the entry was clicked

    contextMenu: (event: Event | null, point: Point) => void

    Fired when the contextmenu is requested for the entry

    doubleClicked: (
        event: Event | null,
        point: Point,
        button: number | undefined,
    ) => void

    Fired when the entry object was double clicked