react-plot
Version:
Library of React components to render SVG 2D plots.
16 lines • 597 B
TypeScript
import type { CSSProperties } from 'react';
import type { Position } from '../../types.js';
import type { Scales, TicksType } from './types.js';
interface HorizontalAxisGridLinesProps {
plotHeight: number;
primaryTicks: TicksType[];
position: Position;
scale?: Scales;
style?: CSSProperties;
primaryGrid?: boolean;
secondaryGrid?: boolean;
secondaryStyle?: CSSProperties;
}
export default function HorizontalAxisGridLines(props: HorizontalAxisGridLinesProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=HorizontalAxisGridLines.d.ts.map