1 | import { Component } from '@antv/f-engine';
|
2 | import { GuideProps } from '../withGuide';
|
3 | export interface TagGuideProps extends GuideProps {
|
4 | points?: {
|
5 | x: number;
|
6 | y: number;
|
7 | }[] | null;
|
8 | canvasWidth?: number;
|
9 | canvasHeight?: number;
|
10 | offsetX?: number | string;
|
11 | offsetY?: number | string;
|
12 | autoAdjust?: boolean;
|
13 | |
14 |
|
15 |
|
16 | direct?: string;
|
17 | |
18 |
|
19 |
|
20 | side?: string | number;
|
21 | |
22 |
|
23 |
|
24 | content?: string;
|
25 | |
26 |
|
27 |
|
28 | background?: any;
|
29 | |
30 |
|
31 |
|
32 | textStyle?: any;
|
33 | }
|
34 | export default class Tag extends Component<TagGuideProps> {
|
35 | render(): import("@antv/f-engine").JSX.Element;
|
36 | }
|