| 1234567891011121314151617181920212223242526272829303132333435 |
- export declare const DEFAULT_TOOLTIP_OPTIONS: {
- showTitle: boolean;
- shared: boolean;
- showMarkers: boolean;
- customContent: (x: string, data: any[]) => string;
- containerTpl: string;
- itemTpl: string;
- domStyles: {
- 'g2-tooltip': {
- padding: string;
- fontSize: string;
- };
- };
- };
- /**
- * 默认配置项
- */
- export declare const DEFAULT_OPTIONS: {
- appendPadding: number;
- tooltip: {
- showTitle: boolean;
- shared: boolean;
- showMarkers: boolean;
- customContent: (x: string, data: any[]) => string;
- containerTpl: string;
- itemTpl: string;
- domStyles: {
- 'g2-tooltip': {
- padding: string;
- fontSize: string;
- };
- };
- };
- animation: {};
- };
|