@mui/x-charts
Version:
The community edition of the charts components (MUI X).
17 lines (16 loc) • 394 B
TypeScript
import * as React from 'react';
import { ChartsXAxisProps } from '../models/axis';
/**
* Demos:
*
* - [Axis](https://mui.com/x/react-charts/axis/)
*
* API:
*
* - [ChartsXAxis API](https://mui.com/x/api/charts/charts-x-axis/)
*/
declare function ChartsXAxis(inProps: ChartsXAxisProps): React.JSX.Element;
declare namespace ChartsXAxis {
var propTypes: any;
}
export { ChartsXAxis };