@antv/g2
Version:
the Grammar of Graphics in Javascript
17 lines (16 loc) • 371 B
TypeScript
import { ShapeMarkerCfg } from '../../../interface';
/**
* Gets line marker
* @ignore
* @param markerCfg
* @param shapeType
* @returns 返回 Line 的 marker 配置
*/
export declare function getLineMarker(markerCfg: ShapeMarkerCfg, shapeType: string): {
symbol: any;
style: {
lineWidth: number;
r: number;
stroke: string;
};
};