-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Automatic hover text wrapping #1964
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Related, but not a duplicate of #382 |
Any chance this is being looked at? Word wrap in the hover text would be awesome! Alternatively, if someone could point me towards the |
You just need to insert `<br>` in your hover text where you want a newline.
Example: `Signs of the flash crash<br>began at these fluctuations`
…On Thu, Feb 14, 2019 at 11:11 PM Harsha-Nori ***@***.***> wrote:
Any chance this is being looked at? Word wrap in the hover text would be
awesome!
Alternatively, if someone could point me towards the
workaround referenced, I'd really appreciate it!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1964 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABx4aicTM8SF3-0WZF5sso3P7xpDv5OZks5vNjONgaJpZM4O8r5w>
.
|
This feature would really be helpful! In python there is a workaround with textwrap, that I want to share for people who might work in python: df["text"].apply(
lambda t: "<br>".join(textwrap.wrap(t))
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This would nice for the workspace. The
<br>
workaround requires a lot of data prep.Perhaps there could event be
layout
options for hover text width (in px) and alignment (left|center|right).#1834 Might provide some direction for SVG text wrapping 👍
The text was updated successfully, but these errors were encountered: