@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
29 lines • 841 B
TypeScript
import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales';
import { ChartDataTypes, InternalChartSeries, MixedLineBarChartProps } from './interfaces';
interface DataSeriesProps<T> {
axis: 'x' | 'y';
plotHeight: number;
plotWidth: number;
highlightedSeries: MixedLineBarChartProps.ChartSeries<T> | null;
highlightedGroupIndex: number | null;
stackedBars: boolean;
isGroupNavigation: boolean;
visibleSeries: ReadonlyArray<InternalChartSeries<T>>;
xScale: ChartScale;
yScale: NumericChartScale;
isRtl?: boolean;
}
export default function DataSeries<T extends ChartDataTypes>({
axis,
plotHeight,
plotWidth,
highlightedGroupIndex,
highlightedSeries,
stackedBars,
isGroupNavigation,
visibleSeries,
xScale,
yScale,
isRtl
}: DataSeriesProps<T>): JSX.Element;
export {};