@antv/g2
Version:
the Grammar of Graphics in Javascript
13 lines • 404 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SortX = void 0;
const sort_1 = require("./sort");
/**
* Sort domain of x scale of mark groups by groups.
*/
const SortX = (options = {}) => {
return (0, sort_1.Sort)(Object.assign(Object.assign({}, options), { channel: 'x' }));
};
exports.SortX = SortX;
exports.SortX.props = {};
//# sourceMappingURL=sortX.js.map
;