@antv/g2
Version:
the Grammar of Graphics in Javascript
18 lines • 513 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Path = void 0;
const color_1 = require("./color");
/**
* A filled path.
*/
const Path = (options, context) => {
return (0, color_1.Color)(Object.assign({ colorAttribute: 'fill' }, options), context);
};
exports.Path = Path;
exports.Path.props = {
defaultMarker: 'hvh',
defaultEnterAnimation: 'fadeIn',
defaultUpdateAnimation: 'morphing',
defaultExitAnimation: 'fadeOut',
};
//# sourceMappingURL=path.js.map
;