| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
- var Util = require('../util/common');
- var Geom = require('./base');
- require('./shape/point');
- var Point =
- /*#__PURE__*/
- function (_Geom) {
- _inheritsLoose(Point, _Geom);
- function Point() {
- return _Geom.apply(this, arguments) || this;
- }
- var _proto = Point.prototype;
- _proto.getDefaultCfg = function getDefaultCfg() {
- var cfg = _Geom.prototype.getDefaultCfg.call(this);
- cfg.type = 'point';
- cfg.shapeType = 'point';
- cfg.generatePoints = true;
- return cfg;
- };
- _proto.draw = function draw(data, shapeFactory) {
- var self = this;
- var container = self.get('container');
- Util.each(data, function (obj) {
- var shape = obj.shape;
- var cfg = self.getDrawCfg(obj);
- if (Util.isArray(obj.y)) {
- var hasStack = self.hasAdjust('stack');
- Util.each(obj.y, function (y, idx) {
- cfg.y = y;
- if (!hasStack || idx !== 0) {
- self.drawShape(shape, obj, cfg, container, shapeFactory);
- }
- });
- } else if (!Util.isNil(obj.y)) {
- self.drawShape(shape, obj, cfg, container, shapeFactory);
- }
- });
- };
- return Point;
- }(Geom);
- Geom.Point = Point;
- module.exports = Point;
|