scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
23 lines (22 loc) • 1.02 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EDataPointWidthMode = void 0;
/**
* Defines enumeration constants for mode of dataPointWidth on Column, Candle and ErrorBar series
*/
var EDataPointWidthMode;
(function (EDataPointWidthMode) {
/**
* Interprets Data Point Width as an absolute pixel value
*/
EDataPointWidthMode["Absolute"] = "Absolute";
/**
* Interprets Data Point Width as a relative to the full width which is axis length / number of columns.
* This assumes that there are no gaps in the data. If you are plotting sparse columns on a NumericAxis, consider Range mode
*/
EDataPointWidthMode["Relative"] = "Relative";
/**
* Interprets Data Point Width as the x data range per column. This is useful if you are plotting sparse columns on a NumericAxis
*/
EDataPointWidthMode["Range"] = "Range";
})(EDataPointWidthMode = exports.EDataPointWidthMode || (exports.EDataPointWidthMode = {}));
;