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
No Name-Value argument is working on surface plots.
[X,Y] = meshgrid(1:0.5:10,1:20); Z = sin(X) + cos(Y); C = X.*Y; surf(X,Y,Z,C,'FaceColor','blue','EdgeColor','red','LineStyle','--') fig2plotly(gcf, 'offline', false);
For example, the previous code should plot a blue surface with dashed red edges, however, none of that is happening.
Expected and generated (https://chart-studio.plotly.com/~xarico10/775/#/) plots:
Examples on using Name-Value arguments on surface plots can be found on: https://www.mathworks.com/help/matlab/ref/surf.html#bvgs7wv-1
The text was updated successfully, but these errors were encountered:
Noticed that looks like this issue is for all 3D plots, not only for surf(), (tested with histogram2(), scatter3() )
Sorry, something went wrong.
This issues was fixed by PR #375. Results are shown bellow
gilbertogalvis
No branches or pull requests
No Name-Value argument is working on surface plots.
For example, the previous code should plot a blue surface with dashed red edges, however, none of that is happening.
Expected and generated (https://chart-studio.plotly.com/~xarico10/775/#/) plots:
Examples on using Name-Value arguments on surface plots can be found on:
https://www.mathworks.com/help/matlab/ref/surf.html#bvgs7wv-1
The text was updated successfully, but these errors were encountered: