Searched refs:pxEnd (Results 1 – 3 of 3) sorted by relevance
63 setLimitsPx(pxStart: number, pxEnd: number) {64 assertFalse(pxStart === pxEnd);65 assertTrue(pxStart >= 0 && pxEnd >= 0);67 this._endPx = pxEnd;
276 updateLocalLimits(pxStart: number, pxEnd: number) {280 pxEnd = Math.max(0, pxEnd);281 if (pxStart === pxEnd) pxEnd = pxStart + 1;282 this.timeScale.setLimitsPx(pxStart, pxEnd);
261 const pxEnd = timeScale.timeToPx(visibleWindowTime.end); constant263 const right = Math.min(timeScale.timeToPx(tEnd), pxEnd);