-
Notifications
You must be signed in to change notification settings - Fork 0
Parcoords: ellipsize long labels; show full text in tooltip #1
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
Conversation
f286da9
to
5269c30
Compare
- as now gl2d traces now come with cartesian svg layers (for select/lasso modes)
- hoveron was added *just* to make scatter/hover.js not break, it's functionality was never implemented in scattergl.
- this brings back first render for 1e6 pts in close to 1500ms - add relayout logic so that updating into dragmode select/lasso triggers a recalc.
- ... to make image test pass
- there's no need
- to compare output with better gl2d tick patch
This reverts commit d63578b.
- instead of 'old' mesure that uses glplot.viewBox - this makes gl2d ticks 'more on-par' with SVG
I don't understand why we need to initInteractions twice, but it seems necessary to do both before and after finalDraw
standardize on assets/delay and increase the updateCamera delay
if you mouseout of the gl2d plot while hovering on a point, this ensures that unhover will be triggered. prior to this the test "scattergl after visibility restyle" consistently failed for me locally
seems like chrome has a more efficient image encoder now
- a follow-up to plotly#448
- use graph-wide <g.zoomlayer> for ternary zoom effects, no need to another layer to accomplish this.
- broken since plotly#448 - 🔒 down with test
Fix scatterternary lasso/select drag modes
- so we might be able to reuse them for contourcarpet - and test getVisibleSegment
minor change to the algorithm probably due to cleaner open/closed criterion
this makes contours.coloring='lines' work with carpet also fixes some unusual bugs like if the first contour is not shown that were fixed long ago for contour
same as contour - it's *probably* ok without this but I'm a little worried about some restyle call changing element order unexpectedly.
also a bugfix to findBestTextLocation - surprised that didn't break anything before!
Contour line labels
@monfera Could you have a quick look at this? It's only five lines or so. |
@kernc thanks for the PR, I see it's been around for quite some time. I'm on another task now, will check back with you ASAP. |
@kernc your PR didn't register with us b/c it's a PR toward your own repo rather than the upstream (ie. it doesn't show up here: https://github.com/plotly/plotly.js/pulls) - there are some key issues, please issue the PR toward the |
5269c30
to
a28e116
Compare
I was just following your PR guidelines which state:
Will open a PR there, thanks. |
Indeed, you're right! I saw the PR is dated May 18 and saw no conversation. |
Some conversation took place in plotly#1703. 😃 Continued in plotly#1857. |
Ellipsizes labels that are too long to prevent overlapping. But always show full label text in mouse hover tooltip.
Before
After