UNPKG

terminal-revenue-trends-chart

Version:

Bloomberg-style terminal revenue trends chart component

22 lines 581 B
import React from 'react'; export interface DataPoint { quarter: string; revenue: number; marketSize?: number; } export interface RevenueTrendsChartProps { data: DataPoint[]; height?: number; width?: string; title?: string; companyLabel?: string; marketLabel?: string; backgroundColor?: string; borderColor?: string; textColor?: string; gridColor?: string; marketGrowthRate?: number; } declare const RevenueTrendsChart: React.FC<RevenueTrendsChartProps>; export default RevenueTrendsChart; //# sourceMappingURL=index.d.ts.map