Files
ETB/ETB-FrontEnd/node_modules/@mui/x-charts/esm/hooks/useDrawingArea.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

16 lines
436 B
TypeScript

export type ChartDrawingArea = {
top: number;
left: number;
right: number;
bottom: number;
width: number;
height: number;
};
/**
* Get the drawing area dimensions and coordinates. The drawing area is the area where the chart is rendered.
*
* It includes the left, top, width, height, bottom, and right dimensions.
*
* @returns The drawing area dimensions.
*/
export declare function useDrawingArea(): ChartDrawingArea;