@antv/g2
Version:
the Grammar of Graphics in Javascript
14 lines • 397 B
JavaScript
import { Color } from './color';
/**
* A hollow path.
*/
export const Hollow = (options, context) => {
return Color(Object.assign({ fill: 'none', colorAttribute: 'stroke' }, options), context);
};
Hollow.props = {
defaultMarker: 'hvh',
defaultEnterAnimation: 'fadeIn',
defaultUpdateAnimation: 'morphing',
defaultExitAnimation: 'fadeOut',
};
//# sourceMappingURL=hollow.js.map