We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was trying to draw a mesh3d with customized hover text in the below example:
https://codepen.io/Elsioufy/pen/JMLEmP
Yet the hover text did not appear to be shown in the graph. it is working with scatter3d and surface though.
var gd = document.getElementById('graph'); var x = [1, 1, 2, 3, 4, 2]; var y = [2, 1, 3, 4, 5, 3]; var z = [3, 7, 4, 5, 3.5, 2]; // fill in 'text' array for hover var text = x.map((xi, i) => ` ts: ${xi}<br> hz: ${y[i]}<br> ftt: ${z[i]}`) Plotly.plot(gd, [{ type: 'mesh3d', text: text, hoverinfo: 'text', x: x, y: y, z: z, text: text, }], { scene: { xaxis: { title: 'x'}, yaxis: { title: 'y'}, zaxis: { title: 'z'}, } });
The text was updated successfully, but these errors were encountered:
This trace also seems to suffer from misplaced hover ala #2208
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I was trying to draw a mesh3d with customized hover text in the below example:
https://codepen.io/Elsioufy/pen/JMLEmP
Yet the hover text did not appear to be shown in the graph. it is working with scatter3d and surface though.
The text was updated successfully, but these errors were encountered: