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