\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/mertbinici/BusinessBooster/node_modules/recharts/types/chart/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/mertbinici/BusinessBooster/node_modules/recharts/types/chart/SunburstChart.d.ts |
import React from 'react';
export interface SunburstData {
[key: string]: any;
name: string;
value?: number;
fill?: string;
children?: SunburstData[];
}
interface TextOptions {
fontFamily?: string;
fontWeight?: string;
paintOrder?: string;
stroke?: string;
fill?: string;
fontSize?: string;
pointerEvents?: string;
}
export interface SunburstChartProps {
className?: string;
data?: SunburstData;
width?: number;
height?: number;
padding?: number;
dataKey?: string;
ringPadding?: number;
innerRadius?: number;
outerRadius?: number;
/** The abscissa of pole in polar coordinate */
cx?: number;
/** The ordinate of pole in polar coordinate */
cy?: number;
/** Angle in degrees from which the chart should start. */
startAngle?: number;
/** Angle, in degrees, at which the chart should end. Can be used to generate partial sunbursts. */
endAngle?: number;
children?: React.ReactNode;
fill?: string;
stroke?: string;
textOptions?: TextOptions;
onMouseEnter?: (node: SunburstData, e: React.MouseEvent) => void;
onMouseLeave?: (node: SunburstData, e: React.MouseEvent) => void;
onClick?: (node: SunburstData) => void;
}
export declare const SunburstChart: ({ className, data, children, width, height, padding, dataKey, ringPadding, innerRadius, fill, stroke, textOptions, outerRadius, cx, cy, startAngle, endAngle, onClick, onMouseEnter, onMouseLeave, }: SunburstChartProps) => React.JSX.Element;
export {};