UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

15 lines (14 loc) 525 B
import { BaseAnimationStyle, IBaseAnimationStyleOptions } from "./BaseAnimationStyle"; export interface IMountainAnimationStyleOptions extends IBaseAnimationStyleOptions { fill?: string; zeroLineY?: number; } export declare class MountainAnimationStyle extends BaseAnimationStyle { zeroLineY: number; private fillProperty; private fillARGBProperty; constructor(options?: IMountainAnimationStyleOptions); set fill(value: string); get fill(): string; get fillARGB(): number; }