\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/util/tooltip/ |
|
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/util/tooltip/translate.d.ts |
import { CSSProperties } from 'react';
import { Coordinate, CartesianViewBox, AllowInDimension } from '../types';
export type Dimension2D = 'x' | 'y';
export declare function getTooltipCSSClassName({ coordinate, translateX, translateY, }: {
translateX: number | undefined;
translateY: number | undefined;
coordinate: Partial<Coordinate> | undefined;
}): string;
export declare function getTooltipTranslateXY({ allowEscapeViewBox, coordinate, key, offsetTopLeft, position, reverseDirection, tooltipDimension, viewBox, viewBoxDimension, }: {
allowEscapeViewBox: AllowInDimension;
coordinate: Partial<Coordinate>;
key: Dimension2D;
offsetTopLeft: number;
position: Partial<Coordinate>;
reverseDirection: AllowInDimension;
tooltipDimension: number;
viewBox: CartesianViewBox;
viewBoxDimension: number;
}): number;
export declare function getTransformStyle({ translateX, translateY, useTranslate3d, }: {
useTranslate3d: boolean;
translateX: number;
translateY: number;
}): CSSProperties;
export declare function getTooltipTranslate({ allowEscapeViewBox, coordinate, offsetTopLeft, position, reverseDirection, tooltipBox, useTranslate3d, viewBox, }: {
allowEscapeViewBox: AllowInDimension;
coordinate: Partial<Coordinate> | undefined;
offsetTopLeft: number;
position: Partial<Coordinate>;
reverseDirection: AllowInDimension;
tooltipBox: {
width: number;
height: number;
};
useTranslate3d: boolean;
viewBox: CartesianViewBox;
}): {
cssProperties: CSSProperties;
cssClasses: string;
};