Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 69c20f7 + 52048eb commit ba47b31Copy full SHA for ba47b31
CHANGELOG.md
@@ -2,6 +2,11 @@
2
All notable changes to this project will be documented in this file.
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
5
+## [UNRELEASED]
6
+
7
+### Fixed
8
+- Fix issue with creating dendrogram in subplots [[#4411](https://github.com/plotly/plotly.py/pull/4411)],
9
10
## [5.18.0] - 2023-10-25
11
12
### Updated
packages/python/plotly/plotly/figure_factory/_dendrogram.py
@@ -387,8 +387,8 @@ def get_dendrogram_traces(
387
except ValueError:
388
y_index = ""
389
390
- trace["xaxis"] = "x" + x_index
391
- trace["yaxis"] = "y" + y_index
+ trace["xaxis"] = f"x{x_index}"
+ trace["yaxis"] = f"y{y_index}"
392
393
trace_list.append(trace)
394
0 commit comments