1 |
|
2 |
|
3 |
|
4 | import React from 'react';
|
5 | import { ScaleType, DataKey, AxisDomain } from '../util/types';
|
6 | export interface Props {
|
7 | type?: 'number' | 'category';
|
8 |
|
9 | name?: string | number;
|
10 |
|
11 | unit?: string | number;
|
12 |
|
13 | zAxisId?: string | number;
|
14 |
|
15 | dataKey?: DataKey<any>;
|
16 |
|
17 | range?: number[];
|
18 | scale?: ScaleType | Function;
|
19 |
|
20 | domain?: AxisDomain;
|
21 | }
|
22 | export declare class ZAxis extends React.Component<Props> {
|
23 | static displayName: string;
|
24 | static defaultProps: {
|
25 | zAxisId: number;
|
26 | range: number[];
|
27 | scale: string;
|
28 | type: string;
|
29 | };
|
30 | render(): React.ReactNode;
|
31 | }
|