Skip to content
New issue

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

docs - grouped horizontal bar #417

Open
danton267 opened this issue Oct 20, 2021 · 0 comments
Open

docs - grouped horizontal bar #417

danton267 opened this issue Oct 20, 2021 · 0 comments

Comments

@danton267
Copy link
Member

x = [1980 1990 2000];
y = [8 15 25; 30 35 40; 50 55 62];

% Grouped
tiledlayout(2,1);
ax1 = nexttile;
barh(ax1,x,y)
title('Grouped Style')

% Stacked
ax2 = nexttile;
barh(ax2,x,y,'stacked')
title('Stacked Style')

fig2plotly(gcf);

Plot on the top subplot is not generated properly.

@danton267 danton267 changed the title docs - grouped horizontal bar [docs] - grouped horizontal bar Oct 20, 2021
@danton267 danton267 changed the title [docs] - grouped horizontal bar docs - grouped horizontal bar Oct 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant