Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(xAxis): minor ticks depending on interval #43377043 #10

Open
wants to merge 9 commits into
base: TechAudit-5.4.1
Choose a base branch
from

Conversation

aspectie
Copy link

@aspectie aspectie commented Dec 23, 2024

Карточки в Kaiten:
https://techaudit.kaiten.ru/43377043

Причина бага: количество минорных делений берется дефолтное 5, что никак не соотносится с величиной промежутка между двумя значениями.

Решение: в зависимости от длины промежутка вычислять количество делений в разных масштабах (часы, дни, месяцы и тд)

@aspectie aspectie self-assigned this Dec 23, 2024
@aspectie aspectie requested a review from lmmelstron December 23, 2024 15:16
@aspectie aspectie added the bug Something isn't working label Dec 23, 2024
src/scale/Interval.ts Outdated Show resolved Hide resolved
src/scale/Interval.ts Outdated Show resolved Hide resolved
src/scale/Interval.ts Outdated Show resolved Hide resolved
Copy link

@lmmelstron lmmelstron left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

interval, судя по коду, не обязан быть временным, поэтому прописывать в нём логику вложенных тиков на основе времени кажется неправильным.
Необходимо проверить, и, если это действительно так, перенести логику в Time.

Так же есть пара комментариев по оптимизации кода

@aspectie aspectie requested a review from lmmelstron January 9, 2025 08:29
export const ONE_YEAR = ONE_DAY * 365;
export const ONE_LEAP_YEAR = ONE_DAY * 366;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Зачем нужно вводить високосный год? при расчете числа делений все равно используется ceil, и кажется, что разницы нет

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

между високосным и невисокосным годами интервал больше, поэтому Math.ceil(interval / period) будет > 1, то есть между ними появляется лишний minor tick

src/scale/Time.ts Show resolved Hide resolved
src/scale/Time.ts Outdated Show resolved Hide resolved
src/scale/Time.ts Outdated Show resolved Hide resolved
@aspectie aspectie requested a review from rekilina January 14, 2025 09:44
@aspectie aspectie changed the title fix(xAxis): minor ticks depending on interval fix(xAxis): minor ticks depending on interval #43377043 Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants