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