Reproducer - https://jsfiddle.net/u694sd0z/
When there is sampling in original ticks due to large no. of x-values i.e. not all ticks are visible for each category then vertical lines across levels are not aligned properly, can you please fix the issue or help us in understanding how it can be fixed?

Possibly it is related to considering only the current active ticks (tick.isActive) for figuring out position for a category and not all ticks (group.leaves) ?
|
minPos = tickPosition(tick, mathMax(group.startAt - 1, min - 1)); |
|
maxPos = tickPosition(tick, mathMin(group.startAt + group.leaves - 1 - fix, max)); |
Reproducer - https://jsfiddle.net/u694sd0z/
When there is sampling in original ticks due to large no. of x-values i.e. not all ticks are visible for each category then vertical lines across levels are not aligned properly, can you please fix the issue or help us in understanding how it can be fixed?
Possibly it is related to considering only the current active ticks (
tick.isActive) for figuring out position for a category and not all ticks (group.leaves) ?grouped_categories/grouped-categories.js
Lines 594 to 595 in c606806