scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
22 lines (21 loc) • 502 B
TypeScript
/**
* Enumeration constants to define 2D text label horizontal alignment for vertical axes
*/
export declare enum ELabelAlignment {
/**
* Aligned to minimise the space between the label and axis, ie right for left axis and left for right axis (opposite if inner axis)
*/
Auto = "Auto",
/**
* Left Aligned
*/
Left = "Left",
/**
* Right Aligned
*/
Right = "Right",
/**
* Center Aligned
*/
Center = "Center"
}