@carbon/charts
Version:
Carbon charting components
15 lines (14 loc) • 372 B
TypeScript
import { Component } from '../component';
import { Threshold } from '../essentials/threshold';
export declare class TwoDimensionalAxes extends Component {
type: string;
children: any;
thresholds: Threshold[];
margins: {
top: number;
right: number;
bottom: number;
left: number;
};
render(animate?: boolean): void;
}