docs - grouped horizontal bar
Open
Nobody has claimed this yet.
- Dominant language
- MATLAB
- Stars
- 413
- Forks
- 166
- PR merge metrics
- No merged PRs in 30d
Description
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.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Run the provided MATLAB example with grouped and stacked horizontal bars, then pass the figure to fig2plotly(gcf). Compare the generated top grouped subplot with the source plot and trace the barh grouped-style conversion. Done means the top subplot is generated correctly while the stacked subplot remains correct.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- matlab
- Domain
- data-visualization
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100