Press n or j to go to the next uncovered block, b, p or k for the previous block.
export function calculateBarHeight(count, maxCount, chartHeight) { return maxCount > 0 ? (count / maxCount) * chartHeight : 0; }