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 = linspace(0,3*pi,200); y = cos(x) + rand(1,200); c = linspace(1,10,length(x)); scatter(x,y,[],c) fig2plotly(gcf);
prints this error, and the resulting plot is not colored
Unrecognized function or variable 'numColor'. We had trouble parsing the scatter object. This trace might not render properly.
same with this:
x = linspace(0,3*pi,200); y = cos(x) + rand(1,200); sz = 25; c = linspace(1,10,length(x)); scatter(x,y,sz,c,'filled') fig2plotly(gcf);
for this one, the middle of the plot is supposed to be transparent, it is all one color
x = randn(1000,1); y = randn(1000,1); s = scatter(x,y,'filled'); distfromzero = sqrt(x.^2 + y.^2); s.AlphaData = distfromzero; s.MarkerFaceAlpha = 'flat'; fig2plotly(gcf);
this plot when translated to plotly becomes unreadable:
load seamount x y z; fig = figure; scatter(x, y, 10, z); title('Undersea Elevation'); xlabel('Longitude'); ylabel('Latitude'); fig2plotly(gcf);
The text was updated successfully, but these errors were encountered:
fix issue #437
9767f7f
Merge pull request #461 from plotly/fix_issue_437
565d8a0
This issues was fixed by PR #461
Here the results
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
prints this error, and the resulting plot is not colored
same with this:
for this one, the middle of the plot is supposed to be transparent, it is all one color
this plot when translated to plotly becomes unreadable:
The text was updated successfully, but these errors were encountered: