@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
19 lines • 916 B
TypeScript
/// <reference types="react" />
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 {};
//# sourceMappingURL=data-series.d.ts.map