File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/python/plotly/plotly/figure_factory Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ UNRELEASED]
6
+
7
+ ### Fixed
8
+ - Fix issue with creating dendrogram in subplots [[ #4411 ] ( https://github.com/plotly/plotly.py/pull/4411 )] ,
9
+
5
10
## [ 5.18.0] - 2023-10-25
6
11
7
12
### Updated
Original file line number Diff line number Diff line change @@ -387,8 +387,8 @@ def get_dendrogram_traces(
387
387
except ValueError :
388
388
y_index = ""
389
389
390
- trace ["xaxis" ] = "x" + x_index
391
- trace ["yaxis" ] = "y" + y_index
390
+ trace ["xaxis" ] = f"x { x_index } "
391
4924
td>+ trace ["yaxis" ] = f"y { y_index } "
392
392
393
393
trace_list .append (trace )
394
394
You can’t perform that action at this time.
0 commit comments