@antv/g2
Version:
the Grammar of Graphics in Javascript
12 lines • 306 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Column = void 0;
/**
* Extract a column of data specified in encoding.
*/
const Column = ({ value }) => {
return () => value;
};
exports.Column = Column;
exports.Column.props = {};
//# sourceMappingURL=column.js.map
;