bytev-charts-beta1.0
Version:
测试版-1.0,版本号为小版本; 基于echarts和JavaScript及ES6封装的一个可以直接调用的图表组件库,内置主题设计,简单快捷,且支持用户自定义配置; npm 安装方式: npm install bytev-charts 若启动提示还需额外install插件,则运行 npm install @babel/runtime-corejs2 即可;
116 lines (92 loc) • 4.17 kB
JavaScript
import _Reflect$construct from "@babel/runtime-corejs2/core-js/reflect/construct";
import _classCallCheck from "@babel/runtime-corejs2/helpers/classCallCheck";
import _createClass from "@babel/runtime-corejs2/helpers/createClass";
import _assertThisInitialized from "@babel/runtime-corejs2/helpers/assertThisInitialized";
import _get from "@babel/runtime-corejs2/helpers/get";
import _inherits from "@babel/runtime-corejs2/helpers/inherits";
import _possibleConstructorReturn from "@babel/runtime-corejs2/helpers/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime-corejs2/helpers/getPrototypeOf";
import _defineProperty from "@babel/runtime-corejs2/helpers/defineProperty";
import "core-js/modules/es.array.for-each.js";
import "core-js/modules/es.object.to-string.js";
import "core-js/modules/web.dom-collections.for-each.js";
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
/*
*
* */
import RadarComponent from '../RadarComponent.class.js';
var RadarBasic = /*#__PURE__*/function (_RadarComponent) {
_inherits(RadarBasic, _RadarComponent);
var _super = _createSuper(RadarBasic);
function RadarBasic(element, option) {
var _this;
_classCallCheck(this, RadarBasic);
_this = _super.call(this, element, option);
_defineProperty(_assertThisInitialized(_this), "name", 'RadarBasic');
return _this;
}
_createClass(RadarBasic, [{
key: "setData",
value: function setData(data) {
var _this2 = this;
_get(_getPrototypeOf(RadarBasic.prototype), "setData", this).call(this, data);
this.byteVModel.title = [this.theme.radarAndPieUnit];
data.forEach(function (m, i) {
_this2.byteVModel.title[0].subtext = m.unit || '';
});
this.byteVModel.radar.indicator = [];
var arr = [];
var maxArr = [];
for (var i = 0; i < data.length; i++) {
var color = this.byteVModel.color[i % this.byteVModel.color.length];
arr.push({
name: data.series,
type: 'radar',
// symbolSize: 10,
emphasis: {// lineStyle: {
// width: 4
// }
},
data: []
});
for (var j = 0; j < data[i].x.length; j++) {
this.byteVModel.radar.indicator[j] = {
//name: data[i].x[j]+'('+data[i].unitY+')',
name: data[i].x[j]
}; //找出数组中的最大值最为max
maxArr.push(Math.max.apply(null, data[i].y) * 1.1);
} // arr.data[i] = {
arr[i].data.push({
value: data[i].y,
name: data[i].series,
unit: data[i].unit,
unitX: data[i].unitX,
unitY: data[i].unitY,
site: data[i].x,
itemStyle: {
emphasis: {
borderColor: color + '80',
borderWidth: 10
}
},
emphasis: {
label: this.theme.label
},
areaStyle: {
// color: color,
opacity: 0.2
}
});
} //找出两个数组中最大值大的那个数
var max = Math.max.apply(null, maxArr);
for (var _i = 0; _i < this.byteVModel.radar.indicator.length; _i++) {
this.byteVModel.radar.indicator[_i].max = max;
}
this.byteVModel.series = arr;
this.componentInstance.setOption(this.byteVModel, true);
}
}]);
return RadarBasic;
}(RadarComponent);
export { RadarBasic as default };