1 | import 'react';
|
2 | import { HeatmapOptions } from '@antv/g2plot/lib/plots/heatmap';
|
3 | import { ColorAttr } from '@antv/g2plot/lib/types/attr';
|
4 | import { BasePlotOptions } from '../createPlot';
|
5 | import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
|
6 | export interface CalendarOptions extends HeatmapOptions, BasePlotOptions {
|
7 |
|
8 | legend?: LengendAPIOptions;
|
9 |
|
10 | tooltip?: TooltipAPIOptions;
|
11 |
|
12 | label?: LabelAPIOptions;
|
13 | dateField?: string;
|
14 |
|
15 | valueField?: string;
|
16 | dateRange?: string[];
|
17 |
|
18 | colors?: ColorAttr;
|
19 | }
|
20 | declare const _default: import("react").ForwardRefExoticComponent<CalendarOptions & import("react").RefAttributes<any>>;
|
21 | export default _default;
|