scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
26 lines (25 loc) • 654 B
TypeScript
import { SCRTDoubleVector } from "../../../types/TSciChart";
export interface ISpline {
/**
* X spline values
*/
xSplineValues: SCRTDoubleVector;
/**
* Y spline values
*/
ySplineValues: SCRTDoubleVector;
/**
* the interpolationPoints being used for the Spline
*/
interpolationPoints: number;
/**
* it returns true for splines
*/
isSpline: boolean;
/**
* Updates spline values
*/
updateSplineValues(): void;
/** Called if the spline cannot be calculated. By default it falls back to the original data */
onSplineFailure(): void;
}