@antv/g2
Version:
the Grammar of Graphics in Javascript
13 lines • 461 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GroupColor = void 0;
const group_1 = require("./group");
/**
* The GroupColor transform group data by x channel, and aggregate.
*/
const GroupColor = (options = {}) => {
return (0, group_1.Group)(Object.assign(Object.assign({}, options), { channels: ['color'] }));
};
exports.GroupColor = GroupColor;
exports.GroupColor.props = {};
//# sourceMappingURL=groupColor.js.map
;