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.

11 lines (10 loc) 643 B
import { BarHighlighter } from './BarHighlighter'; import { Highlight } from './Highlight'; import { BarDataProvider } from '../interfaces/dataprovider/BarDataProvider'; import { IBarDataSet } from '../interfaces/datasets/IBarDataSet'; export declare class HorizontalBarHighlighter extends BarHighlighter { constructor(chart: BarDataProvider); getHighlight(x: number, y: number): Highlight<import("../data/Entry").Entry>[]; protected buildHighlights(set: IBarDataSet, dataSetIndex: any, xVal: any, rounding: any): Highlight<import("../data/Entry").Entry>[]; protected getDistance(x1: any, y1: any, x2: any, y2: any): number; }