We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69c20f7 commit 52048ebCopy full SHA for 52048eb
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