Props for ReadingTrendsChart component.

interface ReadingTrendsChartProps {
readonly history: ReadingHistory;
readonly timeRange: TimeRange;
readonly className?: string;
readonly onDrillDown?: (
data: import("@/types/statistics").DrillDownData,
) => void;
readonly matchResults?: import("@/utils/statistics-adapter").NormalizedMatchForStats[];
readonly comparisonData?: Array<{
date: string;
chapters: number;
count: number;
}>;
readonly comparisonLabel?: string;
readonly enableZoom?: boolean;
}
interface ReadingTrendsChartProps {
    history: ReadingHistory;
    timeRange: TimeRange;
    className?: string;
    onDrillDown?: (data: DrillDownData) => void;
    matchResults?: NormalizedMatchForStats[];
    comparisonData?: { date: string; chapters: number; count: number }[];
    comparisonLabel?: string;
    enableZoom?: boolean;
}

Properties

timeRange: TimeRange
className?: string
onDrillDown?: (data: DrillDownData) => void
matchResults?: NormalizedMatchForStats[]
comparisonData?: { date: string; chapters: number; count: number }[]
comparisonLabel?: string
enableZoom?: boolean