@patternfly/react-charts
Version:
This library provides a set of React chart components for use with the PatternFly reference implementation.
17 lines • 491 B
TypeScript
interface ChartPieOriginInterface {
height: number;
padding: any;
width: number;
}
/**
* Returns the origin for pie based charts. For example, something with a radius such as pie, donut, donut utilization,
* and donut threshold.
*
* @private Not intended as public API and subject to change
*/
export declare const getPieOrigin: ({ height, padding, width }: ChartPieOriginInterface) => {
x: number;
y: number;
};
export {};
//# sourceMappingURL=chart-origin.d.ts.map