UNPKG

@syncfusion/ej2-charts

Version:

Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.

136 lines (135 loc) 2.14 kB
/** * It defines orientation of the bullet chart. * * horizontal * * vertical * * @private */ export declare type OrientationType = /** Horizontal type */ 'Horizontal' | /** Vertical type */ 'Vertical'; /** * It defines flow direction of the bullet chart. * * Forward * * Backward * * @private */ export declare type FlowType = /** Forward type */ 'Forward' | /** Backward type */ 'Backward'; /** * It defines tick position of the bullet chart. * * Far * * Near * * Center * * @private */ export declare type TickPlacement = /** Far type */ 'Far' | /** Near type */ 'Near' | /** Near type */ 'Center'; /** * It defines flow direction of the bullet chart. * * Forward * * Backward * * @private */ export declare type FeatureType = /** Rectangle type */ 'Rect' | /** Dot type */ 'Dot'; /** * It defines tick placement of bullet chart. * * Outside * * Inside * * @private */ export declare type TickPosition = /** Far type */ 'Outside' | /** Near type */ 'Inside'; /** * It defines label placement of bullet chart. * * Outside * * Inside * * @private */ export declare type LabelsPlacement = /** Far type */ 'Outside' | /** Near type */ 'Inside'; /** * It defines label position of bullet chart. * * Below * * Above * * @private */ export declare type LabelsPosition = /** Below type */ 'Below' | /** Above type */ 'Above'; /** * It defines Text anchor of bullet chart. * * Start * * Middle * * End * * @private */ export declare type TextAnchor = /** Start type */ 'Start' | /** Middle type */ 'Middle' | /** End type */ 'End'; /** * It defines Text anchor of bullet chart. * * Left * * Right * * Top * * Bottom * * @private */ export declare type TextPosition = /** Left position */ 'Left' | /** Right position */ 'Right' | /** Top position */ 'Top' | /** Bottom position */ 'Bottom'; /** * It defines Text anchor of bullet chart. * * Rect * * Circle * * Cross * * @private */ export declare type TargetType = /** Rect bulletchart target type */ 'Rect' | /** Circle bulletchart target type */ 'Circle' | /** Cross bulletchart target type */ 'Cross';