@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 • 434 B
JavaScript
import { Poolable } from '../utils/ObjectPool';
export class ViewPortJob extends Poolable {
constructor(viewPortHandler, xValue, yValue, trans, v) {
super();
this.xValue = 0;
this.yValue = 0;
this.mViewPortHandler = viewPortHandler;
this.xValue = xValue;
this.yValue = yValue;
this.transformer = trans;
this.mView = v;
}
}
//# sourceMappingURL=ViewPortJob.js.map