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
Currently, label_wrap() only splits a string if there are spaces, however, there is no way (as far as I can tell) to force wrapping even if there is no space to ensure we do not overflow the specified width.
Example:
label_wrap(10)("Incomprehensibility")
should produce "Incomprehe\nnsibility".
The text was updated successfully, but these errors were encountered:
This is outside the scope of scales as word wrapping is it's own horrible beast safe for very simple cases such as what scales provide. ggtext/gridtext offers a much richer word-wrapping featureset
Currently,
label_wrap()
only splits a string if there are spaces, however, there is no way (as far as I can tell) to force wrapping even if there is no space to ensure we do not overflow the specified width.Example:
should produce
"Incomprehe\nnsibility"
.The text was updated successfully, but these errors were encountered: