63 lines
1.3 KiB
Java
63 lines
1.3 KiB
Java
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
|
|
/**
|
|
* @fileOverview 线图
|
|
* @author dxq613@gmail.com
|
|
*/
|
|
var GeomBase = require('./base');
|
|
|
|
var Path = require('./path');
|
|
|
|
require('./shape/line');
|
|
|
|
var Line = /*#__PURE__*/function (_Path) {
|
|
_inheritsLoose(Line, _Path);
|
|
|
|
function Line() {
|
|
return _Path.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = Line.prototype;
|
|
|
|
/**
|
|
* 获取默认的配置属性
|
|
* @protected
|
|
* @return {Object} 默认属性
|
|
*/
|
|
_proto.getDefaultCfg = function getDefaultCfg() {
|
|
var cfg = _Path.prototype.getDefaultCfg.call(this);
|
|
|
|
cfg.type = 'line';
|
|
cfg.sortable = true;
|
|
return cfg;
|
|
};
|
|
|
|
return Line;
|
|
}(Path);
|
|
|
|
var LineStack = /*#__PURE__*/function (_Line) {
|
|
_inheritsLoose(LineStack, _Line);
|
|
|
|
function LineStack() {
|
|
return _Line.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto2 = LineStack.prototype;
|
|
|
|
_proto2.getDefaultCfg = function getDefaultCfg() {
|
|
var cfg = _Line.prototype.getDefaultCfg.call(this);
|
|
|
|
cfg.hasDefaultAdjust = true;
|
|
cfg.adjusts = [{
|
|
type: 'stack'
|
|
}];
|
|
return cfg;
|
|
};
|
|
|
|
return LineStack;
|
|
}(Line);
|
|
|
|
Line.Stack = LineStack;
|
|
GeomBase.Line = Line;
|
|
GeomBase.LineStack = LineStack;
|
|
module.exports = Line; |