@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.
14 lines (12 loc) • 352 B
TypeScript
import { ViewPortHandler } from '../utils/ViewPortHandler';
/**
* Abstract baseclass of all Renderers.
*
*/
export declare abstract class Renderer {
/**
* the component that handles the drawing area of the chart and it's offsets
*/
protected mViewPortHandler: ViewPortHandler;
constructor(viewPortHandler: ViewPortHandler);
}