We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
x = -2:0.2:2; y = -2:0.2:3; [X,Y] = meshgrid(x,y); Z = X.*exp(-X.^2-Y.^2); contour(X,Y,Z,'ShowText','on') fig2plotly(gcf);
Results in this warning
Whoops! Unrecognized field name "showlabels" in contours
Same error:
[X,Y,Z] = peaks(50); contourf(X,Y,Z,[2 3],'ShowText','on') fig2plotly(gcf);
but this plot, the background is supposed to be gray, it is blue.
Similarly, wrong background:
[X,Y,Z] = peaks; contourf(X,Y,Z,[2 2]) fig2plotly(gcf);
The text was updated successfully, but these errors were encountered:
fix issue #439
f8b3212
This was fixed by PR #467
[X,Y,Z] = peaks(50); contourf(X,Y,Z,[-4:0.5:4],'ShowText','on') fig2plotly(gcf);
Sorry, something went wrong.
Merge pull request #467 from plotly/fix_issue_439
084d98c
No branches or pull requests
Results in this warning
Same error:
but this plot, the background is supposed to be gray, it is blue.
Similarly, wrong background:
The text was updated successfully, but these errors were encountered: