@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
26 lines • 703 B
TypeScript
import { ChartDataTypes } from '../../../mixed-line-bar-chart/interfaces';
import { ChartScale, NumericChartScale } from './scales';
interface InlineStartLabelsProps {
axis?: 'x' | 'y';
plotWidth: number;
plotHeight: number;
maxLabelsWidth?: number;
scale: ChartScale | NumericChartScale;
ticks: readonly ChartDataTypes[];
tickFormatter?: (value: number) => string;
title?: string;
ariaRoleDescription?: string;
}
declare const _default: typeof InlineStartLabels;
export default _default;
declare function InlineStartLabels({
axis,
plotWidth,
plotHeight,
maxLabelsWidth,
scale,
ticks,
tickFormatter,
title,
ariaRoleDescription
}: InlineStartLabelsProps): JSX.Element;