Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
aelqabbany
in reply to: mat_hijs

I don't have any code handy, but I've run into this issue before. After you perform the first break, the width of the view decreases, therefore the points that you want to pass into your second break are now incorrect.
The solution is to offset the points for your second break by the change in the view width.

For example:
Original view width = 50
View width after first break = 45
Change = 50 - 45 = 5

Therefore you need to subtract 5 from each of your second break points.