scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
13 lines (12 loc) • 671 B
TypeScript
import { EAnimationType } from "../../../../types/AnimationType";
import { SCRTDoubleVector, TSciChart } from "../../../../types/TSciChart";
import { SeriesAnimation, IBaseAnimationOptions } from "./SeriesAnimation";
export interface IFadeAnimationOptions extends IBaseAnimationOptions {
}
export declare class FadeAnimation extends SeriesAnimation {
/** @inheritDoc */
readonly type = EAnimationType.Fade;
constructor(options?: IFadeAnimationOptions);
/** @inheritDoc */
calculateAnimationValues(wasmContext: TSciChart, originalValues: SCRTDoubleVector, animationValues: SCRTDoubleVector, progress: number, noZeroLine?: boolean): void;
}