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