@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.
12 lines (11 loc) • 539 B
TypeScript
import { Canvas, Paint } from '@nativescript-community/ui-canvas';
import { IScatterDataSet } from '../../interfaces/datasets/IScatterDataSet';
import { ViewPortHandler } from '../../utils/ViewPortHandler';
import { IShapeRenderer } from './IShapeRenderer';
/**
* Created by wajdic on 15/06/2016.
* Created at Time 09:08
*/
export declare class ChevronDownShapeRenderer implements IShapeRenderer {
renderShape(c: Canvas, dataSet: IScatterDataSet, viewPortHandler: ViewPortHandler, posX: any, posY: any, renderPaint: Paint): void;
}