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.

21 lines (20 loc) 990 B
import { Canvas } from '@nativescript-community/ui-canvas'; import { ChartAnimator } from '../animation/ChartAnimator'; import { ILineScatterCandleRadarDataSet } from '../interfaces/datasets/ILineScatterCandleRadarDataSet'; import { ViewPortHandler } from '../utils/ViewPortHandler'; import { BarLineScatterCandleBubbleRenderer } from './BarLineScatterCandleBubbleRenderer'; /** * Created by Philipp Jahoda on 11/07/15. */ export declare abstract class LineScatterCandleRadarRenderer extends BarLineScatterCandleBubbleRenderer { constructor(animator: ChartAnimator, viewPortHandler: ViewPortHandler); /** * Draws vertical & horizontal highlight-lines if enabled. * * @param c * @param x x-position of the highlight line intersection * @param y y-position of the highlight line intersection * @param set the currently drawn dataset */ protected drawHighlightLines(c: Canvas, x: any, y: any, set: ILineScatterCandleRadarDataSet<any>): void; }