UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

13 lines 539 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Hollow = void 0; const color_1 = require("./color"); /** * Render rect in different coordinate and using color channel for stroke attribute. */ const Hollow = (options, context) => { return (0, color_1.Color)(Object.assign({ colorAttribute: 'stroke' }, options), context); }; exports.Hollow = Hollow; exports.Hollow.props = Object.assign(Object.assign({}, color_1.Color.props), { defaultMarker: 'hollowSquare' }); //# sourceMappingURL=hollow.js.map