react-plot
Version:
Library of React components to render SVG 2D plots.
14 lines • 515 B
TypeScript
import type { SVGAttributes } from 'react';
import type { SeriesPointWithError } from '../types.js';
export interface ErrorBarsProps {
data: readonly SeriesPointWithError[];
transform?: string;
xAxis?: string;
yAxis?: string;
hidden?: boolean;
style?: SVGAttributes<SVGLineElement>;
capSize?: number;
capStyle?: SVGAttributes<SVGLineElement>;
}
export default function ErrorBars(props: ErrorBarsProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ErrorBars.d.ts.map