scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
24 lines (23 loc) • 741 B
TypeScript
/**
* Enumeration constants to define the type of {@link BasePointMarker3D}
*/
export declare enum EPointMarker3DType {
/** The {@link SpherePointMarker3D} */
Sphere = "Sphere",
/** The {@link CubePointMarker3D} */
Cube = "Cube",
/** The {@link PyramidPointMarker3D} */
Pyramid = "Pyramid",
/** The {@link CylinderPointMarker3D} */
Cylinder = "Cylinder",
/** The {@link QuadPointMarker3D} */
Quad = "Quad",
/** The {@link PixelPointMarker3D} */
Pixel = "Pixel",
/** The {@link EllipsePointMarker3D} */
Ellipse = "Ellipse",
/** The {@link TrianglePointMarker3D} */
Triangle = "Triangle",
/** A {@link CustomPointMarker3D} */
Custom = "Custom"
}