Created by philipp on 10/06/16.

interface IHighlighter {
    getHighlight(x: any, y: any): Highlight<Entry>[];
    getHighlightsAtXValue(xVal: any, x?: any, y?: any): Highlight<Entry>[];
}

Implemented by

Methods

  • Returns a Highlight object corresponding to the given x- and y- touch positions in pixels.

    Parameters

    • x: any
    • y: any

    Returns Highlight<Entry>[]

  • Parameters

    • xVal: any
    • Optionalx: any
    • Optionaly: any

    Returns Highlight<Entry>[]