8000 Stacked grouped bar chart by RenaudLN · Pull Request #4486 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Stacked grouped bar chart #4486

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

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests fix
  • Loading branch information
RenaudLN committed Jan 20, 2024
commit a0bb39ab0899627cbc276e396363a679c81b811b
Original file line number Diff line number Diff line change
Expand Up @@ -4562,7 +4562,7 @@ def test_horizontal_stack_group(self):
fig = ff.create_grouped_stacked_bar(
self.data,
x="value",
y="x",
y="loc",
color="type",
stack_group="prod",
orientation="h",
Expand Down Expand Up @@ -4599,7 +4599,7 @@ def test_advanced_stack_group(self):
hover_unified=True,
)

assert fig.layout.xaxis.categoryarray == ["L3", "L2", "L1"]
assert fig.layout.xaxis.categoryarray == ("L3", "L2", "L1")
type_order = []
prod_order = []
for t in fig.data:
Expand Down
0