Chart overflows in x direction when vertical scroll bar is present
The width applied to the chart is slightly too large on initial page load because it doesn't take into account the width of the vertical scrollbar.
If you resize the window it recalculates the width and stops overflowing in the x direction.
Tested in Chrome
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I haven't tested in v1.5.3 but I presume the issue is still present as there is nothing to suggest it has been fixed
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Activity
@MetRonnie Please provide a reproducible codepen example.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Fix for anyone looking. After setting series data:
await nextTick()
window.dispatchEvent(new Event('resize'))
chart.value.refresh()