@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 (13 loc) • 589 B
TypeScript
import { BarLineChartBase } from '../charts/BarLineChartBase';
import { Poolable } from '../utils/ObjectPool';
import { Transformer } from '../utils/Transformer';
import { ViewPortHandler } from '../utils/ViewPortHandler';
export declare abstract class ViewPortJob extends Poolable {
protected mViewPortHandler: ViewPortHandler;
xValue: number;
yValue: number;
transformer: Transformer;
protected mView: BarLineChartBase<any, any, any>;
abstract run(): any;
constructor(viewPortHandler: ViewPortHandler, xValue: any, yValue: any, trans: Transformer, v: any);
}