@carbon/charts
Version:
Carbon Charts component library
17 lines (16 loc) • 471 B
TypeScript
import { Component } from '../component';
import { Threshold } from '../essentials/threshold';
import { RenderTypes } from '../../interfaces/enums';
export declare class TwoDimensionalAxes extends Component {
type: string;
renderType: RenderTypes;
children: any;
thresholds: Threshold[];
margins: {
top: number;
right: number;
bottom: number;
left: number;
};
render(animate?: boolean): void;
}