@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.
10 lines (9 loc) • 457 B
TypeScript
import { Highlight } from './Highlight';
import { PieRadarHighlighter } from './PieRadarHighlighter';
import { PieChart } from '../charts/PieChart';
import { PieEntry } from '../data/PieEntry';
import { PieDataSet } from '../data/PieDataSet';
export declare class PieHighlighter extends PieRadarHighlighter<PieEntry, PieDataSet, PieChart> {
constructor(chart: PieChart);
protected getClosestHighlight(index: any, x: number, y: number): Highlight;
}