@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines • 362 B
JavaScript
import { curveStepAfter } from 'd3-shape';
import { Curve } from './curve';
export const HV = (options, context) => {
return (...params) => {
return Curve(Object.assign({ curve: curveStepAfter }, options), context)(...params);
};
};
HV.props = Object.assign(Object.assign({}, Curve.props), { defaultMarker: 'hv' });
//# sourceMappingURL=hv.js.map