@antv/f2
Version:
Charts for mobile visualization.
14 lines (13 loc) • 384 B
TypeScript
import { LineStyleProps } from '@antv/f-engine';
type LineGuideProps = {
points?: {
x: number;
y: number;
}[] | null;
style?: LineStyleProps;
offsetX?: number | number[];
offsetY?: number | number[];
theme?: any;
};
declare const _default: (props: LineGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
export default _default;