scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
28 lines (27 loc) • 1.16 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EPointMarker3DType = void 0;
/**
* Enumeration constants to define the type of {@link BasePointMarker3D}
*/
var EPointMarker3DType;
(function (EPointMarker3DType) {
/** The {@link SpherePointMarker3D} */
EPointMarker3DType["Sphere"] = "Sphere";
/** The {@link CubePointMarker3D} */
EPointMarker3DType["Cube"] = "Cube";
/** The {@link PyramidPointMarker3D} */
EPointMarker3DType["Pyramid"] = "Pyramid";
/** The {@link CylinderPointMarker3D} */
EPointMarker3DType["Cylinder"] = "Cylinder";
/** The {@link QuadPointMarker3D} */
EPointMarker3DType["Quad"] = "Quad";
/** The {@link PixelPointMarker3D} */
EPointMarker3DType["Pixel"] = "Pixel";
/** The {@link EllipsePointMarker3D} */
EPointMarker3DType["Ellipse"] = "Ellipse";
/** The {@link TrianglePointMarker3D} */
EPointMarker3DType["Triangle"] = "Triangle";
/** A {@link CustomPointMarker3D} */
EPointMarker3DType["Custom"] = "Custom";
})(EPointMarker3DType = exports.EPointMarker3DType || (exports.EPointMarker3DType = {}));