| 12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.GroupY = void 0;
- const group_1 = require("./group");
- /**
- * The GroupY transform group data by x channel, and aggregate.
- */
- const GroupY = (options = {}) => {
- return (0, group_1.Group)(Object.assign(Object.assign({}, options), { channels: ['y', 'color', 'series'] }));
- };
- exports.GroupY = GroupY;
- exports.GroupY.props = {};
- //# sourceMappingURL=groupY.js.map
|