StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
2.0 KiB
134 lines
2.0 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _default2 = {
|
|
min: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
max: {
|
|
type: Number,
|
|
default: 10
|
|
},
|
|
step: {
|
|
type: Number,
|
|
default: 1
|
|
},
|
|
precision: {
|
|
type: Number
|
|
},
|
|
orientation: {
|
|
type: String,
|
|
default: 'horizontal'
|
|
},
|
|
value: {
|
|
type: [Number, Array],
|
|
default: function _default() {
|
|
return null;
|
|
}
|
|
},
|
|
range: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
selection: {
|
|
type: String,
|
|
default: 'before'
|
|
},
|
|
tooltip: {
|
|
type: String,
|
|
default: 'show'
|
|
},
|
|
tooltipSplit: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
tooltipPosition: {
|
|
type: String
|
|
},
|
|
handle: {
|
|
type: String,
|
|
default: 'round'
|
|
},
|
|
reversed: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
rtl: {
|
|
type: [Boolean, String],
|
|
default: 'auto'
|
|
},
|
|
formatter: {
|
|
type: Function
|
|
},
|
|
naturalArrowKeys: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
ticks: {
|
|
type: Array,
|
|
default: function _default() {
|
|
return [];
|
|
}
|
|
},
|
|
ticksPositions: {
|
|
type: Array,
|
|
default: function _default() {
|
|
return [];
|
|
}
|
|
},
|
|
ticksLabels: {
|
|
type: Array,
|
|
default: function _default() {
|
|
return [];
|
|
}
|
|
},
|
|
ticksSnapBounds: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
ticksTooltip: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
scale: {
|
|
type: String,
|
|
default: 'linear'
|
|
},
|
|
focus: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
labelledby: {
|
|
type: [String, Array],
|
|
default: function _default() {
|
|
return null;
|
|
}
|
|
},
|
|
rangeHighlights: {
|
|
type: Array,
|
|
default: function _default() {
|
|
return [];
|
|
}
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
triggerSlideEvent: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
triggerChangeEvent: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
debounce: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
};
|
|
exports.default = _default2; |