From 8c213f07693c1262bde6216bcd3ca27f30025bd0 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Fri, 16 Sep 2022 15:55:57 -0700 Subject: [PATCH] docs: Fix ITick annotations --- src/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types.ts b/src/types.ts index bfa7ecfc..f9810436 100644 --- a/src/types.ts +++ b/src/types.ts @@ -80,11 +80,11 @@ export enum IRowType { export type ITick = { /** Day ID */ dayId: number; - /** Top row at this */ + /** Number of ROWS above this (dynamic) */ top: number; - /** Static distance from top (for headers) */ + /** Extra static distance from top (for headers) */ topS: number; - /** Count row distance from top (dynamic) */ + /** Actual Y position calculated (C) */ topC: number; /** Text if any (e.g. year) */ text?: string | number;