sryd-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
16 lines (15 loc) • 645 B
TypeScript
import { type AnnotationOptionsColorPickerType } from '../annotationTypes';
import { PointProperties } from './pointProperties';
declare const ShapePointProperties_base: {
new (...args: any[]): {
fill?: string;
fillOpacity?: number;
};
} & typeof PointProperties;
export declare class ShapePointProperties extends ShapePointProperties_base {
static is(value: unknown): value is ShapePointProperties;
size: number;
getDefaultColor(colorPickerType: AnnotationOptionsColorPickerType): string | undefined;
getDefaultOpacity(colorPickerType: AnnotationOptionsColorPickerType): number | undefined;
}
export {};