| 123456789 |
- import { curveStepBefore } from 'd3-shape';
- import { Curve } from './curve';
- export const VH = (options) => {
- return (P, value, coordinate, theme) => {
- return Curve(Object.assign({ curve: curveStepBefore }, options))(P, value, coordinate, theme);
- };
- };
- VH.props = Object.assign(Object.assign({}, Curve.props), { defaultMarker: 'vh' });
- //# sourceMappingURL=vh.js.map
|