UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

14 lines (13 loc) 385 B
import * as React from "react"; import { type PieSliceData } from "./PieSlice"; type PieChartProps = { children?: (args: { slice: PieSliceData; }) => React.ReactNode; innerRadius?: number | string; circleSweepDegrees?: number; startAngle?: number; size?: number; }; export declare const PieChart: (props: PieChartProps) => React.JSX.Element; export {};