groupY.js 448 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.GroupY = void 0;
  4. const group_1 = require("./group");
  5. /**
  6. * The GroupY transform group data by x channel, and aggregate.
  7. */
  8. const GroupY = (options = {}) => {
  9. return (0, group_1.Group)(Object.assign(Object.assign({}, options), { channels: ['y', 'color', 'series'] }));
  10. };
  11. exports.GroupY = GroupY;
  12. exports.GroupY.props = {};
  13. //# sourceMappingURL=groupY.js.map