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
I've corrected it on line 5331 replacing options.groupMinHeight (which is 0 by default) to Math.max(options.groupMinHeight, group.labelHeight), although I don't know if it's the correct way to handle it.
The text was updated successfully, but these errors were encountered:
In the case of myself , Math.max (options.groupMinHeight, group.labelHeight) + options.eventMargin and doing, it was just well adjusted . eventMargin the option has been set to 10 .
This bug can be fixed by set 'groupMinHeight'. Set static value of height like CSS height of the group bars.
Problem in the code related to the optimization:
when groups bars hidden from the visibility - legends on Axis bar still visible (groupItems). You count position of the bars that now in the visible but all legends still has visible options
When you scroll to the point that a group presents no items in the selected timerange, the other items shift up occupying a wrong group label.
See at https://almende.github.io/chap-links-library/js/timeline/examples/example13_grouping.html
Correct position:
Zoomed in, wrong position:
I've corrected it on line 5331 replacing
options.groupMinHeight
(which is 0 by default) toMath.max(options.groupMinHeight, group.labelHeight)
, although I don't know if it's the correct way to handle it.The text was updated successfully, but these errors were encountered: