UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

20 lines (19 loc) 668 B
import { ComponentTypeEnum } from '../../interface/type'; import { BaseMarkPoint } from './base-mark-point'; import type { IMarkProcessOptions } from '../interface'; import type { CoordinateType } from '../../../typings'; export declare class PolarMarkPoint extends BaseMarkPoint { static type: ComponentTypeEnum; type: ComponentTypeEnum; name: string; static coordinateType: string; coordinateType: CoordinateType; protected _computePointsAttr(): { point: { x: number; y: number; }; }; protected _computeOptions(): IMarkProcessOptions; } export declare const registerPolarMarkPoint: () => void;