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