@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
138 lines (137 loc) • 6.17 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
var __spread = (this && this.__spread) || function () {
for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));
return ar;
};
import { computed } from 'mobx';
import * as ecStat from 'echarts-stat';
import { get } from 'lodash';
import bind from '../../../utils/bind';
import BaseScatterChartStore from '../stores/base-scatter';
import { formatString } from '../../../services';
import { BaseLocale } from '../../../constants/language/base/type';
var ScatterChartStore = /** @class */ (function (_super) {
__extends(ScatterChartStore, _super);
function ScatterChartStore() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(ScatterChartStore.prototype, "regressionSeries", {
get: function () {
var _a = this.chartStyleService, regression = _a.regression, regressionOrder = _a.regressionOrder, displayColors = _a.displayColors;
if (regression !== "none" /* None */) {
var regressionData = ecStat.regression(regression, this.dataset.rows.map(this.getPoint), regression === "polynomial" /* Polynomial */ ? regressionOrder : 0);
var defaultColor = (get(this.themeOption, ['scatter', 'color']) ||
this.themeOption.color)[0];
var displayColor = displayColors.length > 0 &&
displayColors[0].name === formatString(BaseLocale.regression)
? displayColors[0].color
: '';
regressionData.points.sort(function (a, b) {
return a[0] - b[0];
});
return {
type: 'line',
color: displayColor ? displayColor : defaultColor,
lineStyle: {
normal: {
color: displayColor ? displayColor : defaultColor
}
},
smooth: true,
showSymbol: false,
data: regressionData.points,
markPoint: {
itemStyle: { normal: { color: 'transparent' } },
label: {
normal: {
show: true,
position: 'bottom',
formatter: regressionData.expression,
textStyle: {
color: displayColor ? displayColor : defaultColor,
fontSize: 14
}
}
},
data: [
{ coord: regressionData.points[regressionData.points.length - 1] }
]
}
};
}
},
enumerable: false,
configurable: true
});
ScatterChartStore.prototype.getOptions = function () {
var regression = this.chartStyleService.regression;
var series = regression === "none" /* None */
? this.series
: this.series.concat(this.regressionSeries);
if (this.baseLineServices) {
series = __spread(series, [this.baseLineServices]);
}
return __assign(__assign({}, this.baseOptions), { series: series });
};
__decorate([
computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], ScatterChartStore.prototype, "regressionSeries", null);
__decorate([
bind,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], ScatterChartStore.prototype, "getOptions", null);
return ScatterChartStore;
}(BaseScatterChartStore));
export default ScatterChartStore;