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
Since you added the ability to specify stroke and fill as a function, i would like to also specify width as a function.
The reasoning is so that i can change the width when you hover over a series with focus.
If i have width 1, and i have a lot of series, i can't clearly see it, so i would like to change the width to 3 on focus, using a function on the width
The text was updated successfully, but these errors were encountered:
this actually turns out to be rather tricky, since static and hovered point sizes are currently statically computed from line width. in addition, static point visibility depends on point density, which depends on point size. so it may turn out that hovering will hide the points because their new diameter causes them to become too dense (probably not a frequent case). also, uPlot does not currently mutate the hover point styling after initialization (only their position). doing dynamic width properly will add quite a bit of extra code, especially if we allow all width parameters to be dynamic in the rest of the API for consistency.
#383 (comment)
The text was updated successfully, but these errors were encountered: