scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
32 lines (31 loc) • 673 B
TypeScript
/**
* Enumeration constants to define the type of {@link BasePointMarker}
*/
export declare enum EPointMarkerType {
/**
* The EllipsePointMarker
*/
Ellipse = "Ellipse",
/**
* The CrossPointMarker
*/
Cross = "Cross",
/**
* The SpritePointMarker
*/
Sprite = "Sprite",
/**
* The SquarePointMarker
*/
Square = "Square",
/**
* The TrianglePointMarker
*/
Triangle = "Triangle",
/**
* The XPointMarker
*/
X = "X",
/** A user defined custom point marker. Use customType in the definition to specify the name */
Custom = "Custom"
}