Skip to content

Commit 5c8ee5b

Browse files
committed
Merge branch 'master' into docs-dec
2 parents 4db8474 + 1d30117 commit 5c8ee5b

29 files changed

+8380
-134
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## UNRELEASED
6+
7+
### Updated
8+
- Updated Plotly.js to from version 2.16.1 to version 2.17.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2170----2022-12-22) for more information. Notable changes include:
9+
- Add `shift` and `autoshift` to cartesian y axes to help avoid overlapping of multiple axes [[#6334](https://github.com/plotly/plotly.js/pull/6334)],
10+
with thanks to [Gamma Technologies](https://www.gtisoft.com) for sponsoring the related development!
11+
- Introduce group attributes for `scatter` trace i.e. `alignmentgroup`, `offsetgroup`, `scattermode` and `scattergap` [[#6381](https://github.com/plotly/plotly.js/pull/6381)],
12+
this feature was anonymously sponsored: thank you to our sponsor!
13+
- Add `marker.cornerradius` attribute to `treemap` trace [[#6351](https://github.com/plotly/plotly.js/pull/6351)]
14+
515
## [5.11.0] - 2022-10-27
616

717
### Updated

Diff for: doc/python/dumbbell-plots.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ fig = go.Figure(
9494

9595
fig.update_layout(
9696
title="Life Expectancy in Europe: 1952 and 2002",
97-
width=1000,
9897
height=1000,
9998
showlegend=False,
10099
)
@@ -109,7 +108,7 @@ fig.show()
109108

110109
In this example, we add arrow markers to the plot. The first trace adds the lines connecting the data points and arrow markers.
111110
The second trace adds circle markers. On the first trace, we use `standoff=8` to position the arrow marker back from the data point.
112-
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size.
111+
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size, which is hardcoded to 16 here.
113112

114113
```python
115114
import pandas as pd
@@ -165,7 +164,6 @@ fig = go.Figure(
165164

166165
fig.update_layout(
167166
title="Life Expectancy in Europe: 1952 and 2002",
168-
width=1000,
169167
height=1000,
170168
showlegend=False,
171169
)

0 commit comments

Comments
 (0)