UNPKG

infocharts

Version:

<img src="https://raw.githubusercontent.com/garethslinn/public_infocharts/refs/heads/main/logo.svg" />

24 lines 610 B
import React from 'react'; import './styles/infocharts.scss'; interface DataPoint { month: string; series1: number; series2: number; series3: number; } interface StackedAreaChartProps { data: DataPoint[]; colors?: string[]; height?: number; width: number; seriesNames?: string[]; background?: string; labelColor?: string; axisColor?: string; showLegend?: boolean; lineColor?: string; hideAxis?: boolean; } declare const StackedAreaChart: React.FC<StackedAreaChartProps>; export default StackedAreaChart; //# sourceMappingURL=StackedAreaChart.d.ts.map