UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

19 lines 663 B
import { __extends } from "tslib"; import * as _ from '@antv/util'; import BasePlot from '../../base/plot'; import RoseLayer from './layer'; var Rose = /** @class */ (function (_super) { __extends(Rose, _super); function Rose() { return _super !== null && _super.apply(this, arguments) || this; } Rose.prototype.createLayers = function (props) { var layerProps = _.deepMix({}, props); layerProps.type = 'rose'; _super.prototype.createLayers.call(this, layerProps); }; Rose.getDefaultOptions = RoseLayer.getDefaultOptions; return Rose; }(BasePlot)); export default Rose; //# sourceMappingURL=index.js.map