@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines • 387 B
JavaScript
import { Color } from './color';
/**
* Render rect in different coordinate and using color channel for stroke attribute.
*/
export const Hollow = (options, context) => {
return Color(Object.assign({ colorAttribute: 'stroke' }, options), context);
};
Hollow.props = Object.assign(Object.assign({}, Color.props), { defaultMarker: 'hollowSquare' });
//# sourceMappingURL=hollow.js.map