UNPKG

reaviz

Version:

Data Visualization using React

26 lines (25 loc) 642 B
import { FC } from 'react'; import { ChartShallowDataShape } from '../common/data'; import { HeatmapProps } from './Heatmap'; import { CalendarView } from './calendarUtils'; export interface CalendarHeatmapProps extends Omit<HeatmapProps, 'data'> { /** * Chart data shape. */ data: ChartShallowDataShape[]; /** * Height of the component. */ height: number; /** * Width of the component. */ width: number; /** * View of the calendar renderer. * * @default 'year' */ view: CalendarView; } export declare const CalendarHeatmap: FC<Partial<CalendarHeatmapProps>>;