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