@visactor/vchart
Version:
charts lib based @visactor/VGrammar
17 lines (16 loc) • 624 B
TypeScript
import { ComponentTypeEnum } from '../../interface/type';
import type { CoordinateType, IPoint } from '../../../typings';
import { BaseMarkPoint } from './base-mark-point';
import type { IMarkProcessOptions } from '../interface';
export declare class CartesianMarkPoint extends BaseMarkPoint {
static type: ComponentTypeEnum;
type: ComponentTypeEnum;
name: string;
static coordinateType: string;
coordinateType: CoordinateType;
protected _computePointsAttr(): {
point: IPoint;
};
protected _computeOptions(): IMarkProcessOptions;
}
export declare const registerMarkPoint: () => void;