@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
25 lines (24 loc) • 936 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LabelPosition = exports.BarShape = exports.ValueType = exports.SubtotalType = void 0;
var SubtotalType;
(function (SubtotalType) {
SubtotalType["Sum"] = "sum";
SubtotalType["Max"] = "max";
SubtotalType["Constant"] = "Constant";
})(SubtotalType = exports.SubtotalType || (exports.SubtotalType = {}));
var ValueType;
(function (ValueType) {
ValueType["Rate"] = "rate";
ValueType["Current"] = "current";
})(ValueType = exports.ValueType || (exports.ValueType = {}));
var BarShape;
(function (BarShape) {
BarShape["Capsule"] = "capsule";
BarShape["Rectangle"] = "rectangle";
})(BarShape = exports.BarShape || (exports.BarShape = {}));
var LabelPosition;
(function (LabelPosition) {
LabelPosition["Left"] = "left";
LabelPosition["Top"] = "top";
})(LabelPosition = exports.LabelPosition || (exports.LabelPosition = {}));