@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
19 lines • 733 B
JavaScript
import { __extends } from "tslib";
import * as _ from '@antv/util';
import BasePlot from '../../base/plot';
import GroupColumnLayer from './layer';
var GroupColumn = /** @class */ (function (_super) {
__extends(GroupColumn, _super);
function GroupColumn() {
return _super !== null && _super.apply(this, arguments) || this;
}
GroupColumn.prototype.createLayers = function (props) {
var layerProps = _.deepMix({}, props);
layerProps.type = 'groupColumn';
_super.prototype.createLayers.call(this, layerProps);
};
GroupColumn.getDefaultOptions = GroupColumnLayer.getDefaultOptions;
return GroupColumn;
}(BasePlot));
export default GroupColumn;
//# sourceMappingURL=index.js.map