We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
plotly
Learn more about funding links in repositories.
Report abuse
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
Experimenting with the tetrahedron codepen setting the vertexcolor property does not seem to work, facecolor though works as expected.
var data = [{ type: "mesh3d", opacity:0.7, x: [0, 1, 2, 0], y: [0, 0, 1, 2], z: [0, 2, 0, 1], i: [0, 0, 0, 1], j: [1, 2, 3, 2], k: [2, 3, 1, 3], // color:'rgb(200,100,300)', // facecolor: [ 'rgb(255, 0, 0)', 'rgb(0, 0, 255)', 'rgb(0, 255, 0)', 'rgb(255, 255, 255)' ], vertexcolor: [ 'rgb(255, 0, 0)', 'rgb(0, 0, 255)', 'rgb(0, 255, 0)', 'rgb(255, 255, 255)' ], } ]; Plotly.plot('myDiv', data, {});
The text was updated successfully, but these errors were encountered:
Thanks very much for the report. Here's the 1-letter patch that fixes this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Experimenting with the tetrahedron codepen setting the vertexcolor property does not seem to work, facecolor though works as expected.
The text was updated successfully, but these errors were encountered: