NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/geometry/point.d.ts

20 lines
535 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { MappingDatum, ShapeInfo } from '../interface';
import Geometry from './base';
/** 引入 Point 对应的 ShapeFactory */
import './shape/point';
/**
* Point
*
*/
export default class Point extends Geometry {
readonly type: string;
readonly shapeType: string;
protected generatePoints: boolean;
/**
*
* @param mappingDatum
* @returns draw cfg
*/
protected getDrawCfg(mappingDatum: MappingDatum): ShapeInfo;
}