UNPKG

@nativescript-community/ui-chart

Version:

A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.

16 lines (15 loc) 402 B
import { Highlight } from './Highlight'; /** * Created by philipp on 10/06/16. */ export interface IHighlighter { /** * Returns a Highlight object corresponding to the given x- and y- touch positions in pixels. * * @param x * @param y * @return */ getHighlight(x: any, y: any): Highlight[]; getHighlightsAtXValue(xVal: any, x?: any, y?: any): Highlight[]; }