scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
44 lines (43 loc) • 1.86 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EAxisType = void 0;
/**
* Enumeration constants to define the type of {@link AxisCore | Axis}
*/
var EAxisType;
(function (EAxisType) {
/**
* The Axis is a Category Axis. X-values are measured based on index, not data-value
*/
EAxisType["CategoryAxis"] = "CategoryAxis";
/**
* The Axis is a Numeric value Axis. X-Values are measured based on value, not index
*/
EAxisType["NumericAxis"] = "NumericAxis";
/**
* The Axis is a Logarithmic Numeric value Axis. X/Y Values are measured based on logN(value)
*/
EAxisType["LogarithmicAxis"] = "LogarithmicAxis";
/**
* The Axis is a 3D Chart Numeric value Axis. X-Values are measured based on value, not index
*/
EAxisType["NumericAxis3D"] = "NumericAxis3D";
/**
* The Axis is a Date / Time value Axis. X-Values are measured based on value, not index
*/
EAxisType["DateTimeNumericAxis"] = "DateTimeNumericAxis";
/**
* This axis is used for both the radial and angluar axes on a polar chart
*/
EAxisType["PolarNumericAxis"] = "PolarNumericAxis";
/**
* This Axis is the polar version of the Category axis
*/
EAxisType["PolarCategoryAxis"] = "PolarCategoryAxis";
/**
* The Axis is a Index Axis. Values are converted to indexes using baseValues. It is continuous and uses Numeric formatting.
*/
EAxisType["BaseValueAxis"] = "BaseValueAxis";
/** The axis is a Discontinuous Date / Time Axis. Values are converted to indexes using baseValues like an BaseValueAxis, but the dataGap between base values is fixed. */
EAxisType["DiscontinuousDateAxis"] = "DiscontinuousDateAxis";
})(EAxisType = exports.EAxisType || (exports.EAxisType = {}));