UNPKG

@visx/xychart

Version:

Composable cartesian coordinate chart built with visx primitives

8 lines 503 B
import { AxisScale } from '@visx/axis'; import React from 'react'; import { GlyphProps } from '../../types'; import { BaseGlyphSeriesProps } from './private/BaseGlyphSeries'; export default function AnimatedGlyphSeries<XScale extends AxisScale, YScale extends AxisScale, Datum extends object>({ renderGlyph, ...props }: Omit<BaseGlyphSeriesProps<XScale, YScale, Datum>, 'renderGlyphs'> & { renderGlyph?: React.FC<GlyphProps<Datum>>; }): JSX.Element; //# sourceMappingURL=AnimatedGlyphSeries.d.ts.map