scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
21 lines (20 loc) • 703 B
TypeScript
import { BasePointMarkerStyle, IBasePointMarkerStyleOptions } from "./BasePointMarkerStyle";
export interface IPointMarkerStyleOptions extends IBasePointMarkerStyleOptions {
strokeThickness?: number;
stroke?: string;
fill?: string;
}
export declare class PointMarkerStyle extends BasePointMarkerStyle {
strokeThickness: number;
private strokeProperty;
private fillProperty;
private strokeARGBProperty;
private fillARGBProperty;
constructor(options?: IPointMarkerStyleOptions);
set stroke(value: string);
get stroke(): string;
get strokeARGB(): number;
set fill(value: string);
get fill(): string;
get fillARGB(): number;
}