scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
18 lines (17 loc) • 544 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EErrorDirection = void 0;
/**
* List of values for errorDirection in {@link FastErrorBarsRenderableSeries}
*/
var EErrorDirection;
(function (EErrorDirection) {
/**
* Draw error bars horizontally
*/
EErrorDirection["Horizontal"] = "Horizontal";
/**
* Draw error bars vertically
*/
EErrorDirection["Vertical"] = "Vertical";
})(EErrorDirection = exports.EErrorDirection || (exports.EErrorDirection = {}));
;