UNPKG

@antv/f2

Version:

Charts for mobile visualization.

15 lines (14 loc) 559 B
import { PolygonStyleProps } from '@antv/f-engine'; import { GuideProps } from '../withGuide'; export interface LineGuideProps extends GuideProps { points?: { x: number; y: number; }[] | null; style?: Partial<PolygonStyleProps> | ((record?: any) => Partial<PolygonStyleProps>); offsetX?: number | string | (number | string)[]; offsetY?: number | string | (number | string)[]; theme?: any; } declare const _default: (props: LineGuideProps, context: any) => import("@antv/f-engine").JSX.Element; export default _default;