@antv/g2
Version:
the Grammar of Graphics in Javascript
65 lines • 2.45 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var base_1 = require("../base");
var constant_1 = require("../constant");
var get_style_1 = require("../util/get-style");
var util_1 = require("./util");
/** Interval 的 shape 工厂 */
var IntervalShapeFactory = (0, base_1.registerShapeFactory)('interval', {
defaultShapeType: 'rect',
getDefaultPoints: function (pointInfo) {
return (0, util_1.getRectPoints)(pointInfo);
},
});
/** Inerval 默认 shape,填充的矩形 */
(0, base_1.registerShape)('interval', 'rect', {
draw: function (cfg, container) {
var style = (0, get_style_1.getStyle)(cfg, false, true);
var group = container;
var backgroundCfg = cfg === null || cfg === void 0 ? void 0 : cfg.background;
if (backgroundCfg) {
group = container.addGroup();
var backgroundStyle = (0, get_style_1.getBackgroundRectStyle)(cfg);
var backgroundPath = (0, util_1.getBackgroundRectPath)(cfg, this.parsePoints(cfg.points), this.coordinate);
group.addShape('path', {
attrs: tslib_1.__assign(tslib_1.__assign({}, backgroundStyle), { path: backgroundPath }),
zIndex: -1,
name: constant_1.BACKGROUND_SHAPE,
});
}
var path;
if (style.radius && this.coordinate.isRect) {
path = (0, util_1.getRectWithCornerRadius)(this.parsePoints(cfg.points), this.coordinate, style.radius);
}
else {
path = this.parsePath((0, util_1.getIntervalRectPath)(cfg.points, style.lineCap, this.coordinate));
}
var shape = group.addShape('path', {
attrs: tslib_1.__assign(tslib_1.__assign({}, style), { path: path }),
name: 'interval',
});
return backgroundCfg ? group : shape;
},
getMarker: function (markerCfg) {
var color = markerCfg.color, isInPolar = markerCfg.isInPolar;
if (isInPolar) {
return {
symbol: 'circle',
style: {
r: 4.5,
fill: color,
},
};
}
return {
symbol: 'square',
style: {
r: 4,
fill: color,
},
};
},
});
exports.default = IntervalShapeFactory;
//# sourceMappingURL=index.js.map