scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
21 lines (20 loc) • 754 B
TypeScript
import { BasePointMarkerStyle } from "./BasePointMarkerStyle";
import { ICustomPointMarkerStyleOptions } from "./CustomPointMarkerStyle";
import { IPointMarkerStyleOptions } from "./PointMarkerStyle";
export interface IBaseAnimationStyleOptions {
strokeThickness?: number;
stroke?: string;
pointMarker?: IPointMarkerStyleOptions | ICustomPointMarkerStyleOptions;
opacity?: number;
}
export declare class BaseAnimationStyle {
strokeThickness: number;
pointMarker: BasePointMarkerStyle;
opacity: number;
private strokeProperty;
private strokeARGBProperty;
constructor(options?: IBaseAnimationStyleOptions);
set stroke(value: string);
get stroke(): string;
get strokeARGB(): number;
}