react-native-gifted-charts
Version:
The most complete library for Bar, Line, Area, Pie, Donut, Stacked Bar, Population Pyramid, Radar and Bubble charts in React Native. Allows 2D, 3D, gradient, animations and live data updates.
10 lines (9 loc) • 336 B
TypeScript
import React from 'react';
type RotatablePieProps = {
initialAngle: number;
size: number;
children: React.ReactNode;
onAngleChange?: (angle: number) => void;
};
export declare function RotatablePie({ initialAngle, size, children, onAngleChange, }: RotatablePieProps): import("react/jsx-runtime").JSX.Element;
export {};