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.

32 lines (31 loc) 587 B
/** * Numeric Range. * * @private */ export declare class DoubleRange { private mStart; private mEnd; /** * The start value. * * @private * @returns {number} - The start value. */ readonly start: number; /** * The end value. * * @private * @returns {number} - The end value. */ readonly end: number; /** * The delta between the start and end values. * * @private * @returns {number} - The delta value. */ readonly delta: number; constructor(start: number, end: number); }