UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

14 lines (13 loc) 412 B
import { EPointMarkerType } from "../../../../types/PointMarkerType"; export interface IBasePointMarkerStyleOptions { type: EPointMarkerType; width?: number; height?: number; } export declare class BasePointMarkerStyle { type: EPointMarkerType; width: number; height: number; constructor(options?: IBasePointMarkerStyleOptions); get isCustomPointMarker(): boolean; }