You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the graph midpoint to calculate the current xLabel (represents the day(date) as a two digit string - dd)
Find the corresponding id
Use the id to calculate the index for the extreme left(prevKey) and extreme right (nextKey)
If either of this values is closer to the beginning or end of the cachedGraphValues based on some threshold, then
fetch more values to the left or to the right and shift a similar length of values from the cachedGraphValues such that cachedGraphValues always has a constant size.
Use prevKey or nextKey to fetch the subsequent batch of data of a specified size (pageSize).
The text was updated successfully, but these errors were encountered:
xLabel
(represents the day(date) as a two digit string - dd)id
id
to calculate the index for the extreme left(prevKey
) and extreme right (nextKey
)cachedGraphValues
based on somethreshold
, thencachedGraphValues
such thatcachedGraphValues
always has a constant size.prevKey
ornextKey
to fetch the subsequent batch of data of a specified size (pageSize
).The text was updated successfully, but these errors were encountered: