@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
30 lines • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
/**
* Create By Bruce Too
* On 2019-12-25
*/
var _ = tslib_1.__importStar(require("@antv/util"));
var plot_1 = tslib_1.__importDefault(require("../../base/plot"));
var layer_1 = tslib_1.__importDefault(require("./layer"));
var global_1 = require("../../base/global");
var WordCloud = /** @class */ (function (_super) {
tslib_1.__extends(WordCloud, _super);
function WordCloud(container, props) {
var _this = this;
// only canvas works for now
props.renderer = 'canvas';
_this = _super.call(this, container, props) || this;
return _this;
}
WordCloud.prototype.createLayers = function (props) {
var layerProps = _.deepMix({}, props);
layerProps.type = 'wordCloud';
_super.prototype.createLayers.call(this, layerProps);
};
return WordCloud;
}(plot_1.default));
exports.default = WordCloud;
global_1.registerPlotType('wordCloud', layer_1.default);
//# sourceMappingURL=index.js.map