@data-ui/xy-chart
Version:
A package of charts with standard x- and y- axes. https://williaster.github.io/data-ui
12 lines • 332 B
JavaScript
import PropTypes from 'prop-types';
import { marginShape } from './propShapes';
export default {
disableMouseEvents: PropTypes.bool,
seriesKey: PropTypes.string,
onClick: PropTypes.func,
onMouseMove: PropTypes.func,
onMouseLeave: PropTypes.func,
xScale: PropTypes.func,
yScale: PropTypes.func,
margin: marginShape
};