Skip to content

Commit 9b5ec6a

Browse files
authored
Merge pull request #4627 from plotly/update-plotly-js-version
Update plotly.js to v2.34.0 + add docs
2 parents 3de6e25 + bcbc571 commit 9b5ec6a

File tree

2,441 files changed

+89606
-5157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,441 files changed

+89606
-5157
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## [5.23.0] - TBD
66

77
### Updated
8+
- Updated Plotly.js from version 2.32.0 to version 2.34.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2340----2024-07-18) for more information. These changes are reflected in the auto-generated `plotly.graph_objects` module. Notable changes include:
9+
- Add `subtitle` attribute to `layout.title` to enable adding subtitles to plots [[#7012](https://github.com/plotly/plotly.js/pull/7012)]
10+
- Introduce "u" and "s" pseudo html tags to add partial underline and strike-through styles to SVG text elements [[#7043](https://github.com/plotly/plotly.js/pull/7043)]
11+
- Add geometric mean functionality and 'geometric mean ascending' + 'geometric mean descending' to `category_order` on cartesian axes [[#6223](https://github.com/plotly/plotly.js/pull/6223)],
12+
with thanks to @acxz and @prabhathc for the contribution!
13+
- Add axis property `ticklabelindex` for drawing the label for each minor tick n positions away from a major tick,
14+
with thanks to @my-tien for the contribution! [[#7036](https://github.com/plotly/plotly.js/pull/7036)]
15+
- Add property `ticklabelstandoff` and `ticklabelshift` to cartesian axes to adjust positioning of tick labels,
16+
with thanks to @my-tien for the contribution! [[#7006](https://github.com/plotly/plotly.js/pull/7006)]
17+
- Add `x0shift`, `x1shift`, `y0shift`, `y1shift` to shapes to add control over positioning of shape vertices on (multi-)category axes,
18+
with thanks to @my-tien for the contribution! [[#7005](https://github.com/plotly/plotly.js/pull/7005)]
819
- Specify Python version 3.8-3.11 for development virtual environments and pin `pytest` at version 8.1.1 to match.
920
- Update `IntegerValidator` to handle `extras` option to allow supporting additional keyword values. For example, 'bold' and 'normal' as well as integers as used in font weights [#4612].
1021

22+
1123
## [5.22.0] - 2024-05-01
1224

1325
### Updated

doc/python/axes.md

+58-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupyter:
66
extension: .md
77
format_name: markdown
88
format_version: '1.3'
9-
jupytext_version: 1.16.1
9+
jupytext_version: 1.16.3
1010
kernelspec:
1111
display_name: Python 3 (ipykernel)
1212
language: python
@@ -20,7 +20,7 @@ jupyter:
2020
name: python
2121
nbconvert_exporter: python
2222
pygments_lexer: ipython3
23-
version: 3.10.11
23+
version: 3.10.14
2424
plotly:
2525
description: How to adjust axes properties in Python - axes titles, styling and
2626
coloring axes and grid lines, ticks, tick labels and more.
@@ -448,6 +448,62 @@ fig.update_yaxes(minor_ticks="inside")
448448
fig.show()
449449
```
450450

451+
#### Adjust Tick Label Positions
452+
453+
*New in 5.23*
454+
455+
You can adjust tick label positions by moving them a number of pixels away from the axis using `ticklabelstandoff` or along the axis using `ticklabelshift`.
456+
457+
In this example, `ticklabelshift=25` shifts the labels 25 pixels to the right along the x-axis. By providing a negative value, we could move the labels 25 pixels to the left, (`ticklabelshift=-25`).
458+
459+
Here, `ticklabelstandoff=15` moves the labels further 15 pixels away from the x-axis. A negative value here would move them close to the axis.
460+
461+
```python
462+
import plotly.express as px
463+
464+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')
465+
466+
fig = px.line(df, x='Date', y='AAPL.High')
467+
468+
fig.update_layout(
469+
xaxis=dict(
470+
ticks='outside',
471+
ticklen=10,
472+
ticklabelshift=25,
473+
ticklabelstandoff=15
474+
)
475+
)
476+
477+
fig.show()
478+
```
479+
480+
#### Use Minor Tick for Label
481+
482+
*New in 5.23*
483+
484+
On date or linear axes, use `ticklabelindex` to draw a label for a minor tick instead of a major tick.
485+
486+
To draw the label for the minor tick before each major tick, set `ticklabelindex` -1, like in the following example.
487+
488+
```python
489+
import plotly.express as px
490+
491+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')
492+
493+
fig = px.line(df, x='Date', y='AAPL.High')
494+
495+
fig.update_layout(
496+
xaxis=dict(
497+
minor=dict(ticks='outside'),
498+
ticks='outside',
499+
ticklen=10,
500+
ticklabelindex=-1
501+
)
502+
)
503+
504+
fig.show()
505+
```
506+
451507
### Axis lines: grid and zerolines
452508

453509
##### Toggling Axis grid lines

doc/python/figure-labels.md

+41-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupyter:
66
extension: .md
77
format_name: markdown
88
format_version: '1.3'
9-
jupytext_version: 1.16.1
9+
jupytext_version: 1.16.3
1010
kernelspec:
1111
display_name: Python 3 (ipykernel)
1212
language: python
@@ -20,7 +20,7 @@ jupyter:
2020
name: python
2121
nbconvert_exporter: python
2222
pygments_lexer: ipython3
23-
version: 3.10.11
23+
version: 3.10.14
2424
plotly:
2525
description: How to set the global font, title, legend-entries, and axis-titles
2626
in python.
@@ -236,5 +236,44 @@ fig.update_layout(
236236
fig.show()
237237
```
238238

239+
### Adding a Plot Subtitle
240+
241+
*New in 5.23*
242+
243+
Add a subtitle to a plot with `layout.title.subtitle`. In the following example, we set the subtitle's `text`, and configure the `font` `color` and `size`. By default, if you don't set a font size for the subtitle, it will be `0.7` of the `title` font size.
244+
245+
```python
246+
import plotly.graph_objects as go
247+
from plotly import data
248+
249+
df = data.gapminder().query("continent == 'Europe' and (year == 1952 or year == 2002)")
250+
251+
df_pivot = df.pivot(index="country", columns="year", values="lifeExp")
252+
253+
fig = go.Figure(
254+
[
255+
go.Bar(
256+
x=df_pivot.index, y=df_pivot[1952], name="1952", marker_color="IndianRed"
257+
),
258+
go.Bar(
259+
x=df_pivot.index, y=df_pivot[2002], name="2002", marker_color="LightSalmon"
260+
),
261+
],
262+
layout=dict(
263+
title=dict(
264+
text="Life Expectancy",
265+
subtitle=dict(
266+
text="Life expectancy by European country in 1952 and in 2002",
267+
font=dict(color="gray", size=13),
268+
),
269+
)
270+
),
271+
)
272+
273+
274+
fig.show()
275+
276+
```
277+
239278
#### Reference
240279
See https://plotly.com/python/reference/layout/ for more information!

doc/python/scattermapbox.md

+61-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupyter:
66
extension: .md
77
format_name: markdown
88
format_version: '1.3'
9-
jupytext_version: 1.14.1
9+
jupytext_version: 1.16.2
1010
kernelspec:
1111
display_name: Python 3 (ipykernel)
1212
language: python
@@ -20,7 +20,7 @@ jupyter:
2020
name: python
2121
nbconvert_exporter: python
2222
pygments_lexer: ipython3
23-
version: 3.8.0
23+
version: 3.10.0
2424
plotly:
2525
description: How to make scatter plots on Mapbox maps in Python.
2626
display_as: maps
@@ -265,6 +265,65 @@ fig.show()
265265

266266
```
267267

268+
#### Font Customization
269+
270+
You can customize the font on `go.Scattermapbox` traces with `textfont`. For example, you can set the font `family`.
271+
272+
```python
273+
import plotly.graph_objects as go
274+
275+
token = open(".mapbox_token").read() # you need your own token
276+
277+
fig = go.Figure(go.Scattermapbox(
278+
mode = "markers+text+lines",
279+
lon = [-75, -80, -50], lat = [45, 20, -20],
280+
marker = {'size': 20, 'symbol': ["bus", "harbor", "airport"]},
281+
text = ["Bus", "Harbor", "airport"], textposition = "bottom right",
282+
textfont = dict(size=18, color="black", family="Open Sans Bold")
283+
))
284+
285+
fig.update_layout(
286+
mapbox = {
287+
'accesstoken': token,
288+
'style': "outdoors", 'zoom': 0.7},
289+
showlegend = False,)
290+
291+
fig.show()
292+
```
293+
294+
`go.Scattermapbox` supports the following values for `textfont.family`:
295+
296+
'Metropolis Black Italic', 'Metropolis Black', 'Metropolis Bold Italic', 'Metropolis Bold', 'Metropolis Extra Bold Italic', 'Metropolis Extra Bold', 'Metropolis Extra Light Italic', 'Metropolis Extra Light', 'Metropolis Light Italic', 'Metropolis Light', 'Metropolis Medium Italic', 'Metropolis Medium', 'Metropolis Regular Italic', 'Metropolis Regular', 'Metropolis Semi Bold Italic', 'Metropolis Semi Bold', 'Metropolis Thin Italic', 'Metropolis Thin', 'Open Sans Bold Italic', 'Open Sans Bold', 'Open Sans Extrabold Italic', 'Open Sans Extrabold', 'Open Sans Italic', 'Open Sans Light Italic', 'Open Sans Light', 'Open Sans Regular', 'Open Sans Semibold Italic', 'Open Sans Semibold', 'Klokantech Noto Sans Bold', 'Klokantech Noto Sans CJK Bold', 'Klokantech Noto Sans CJK Regular', 'Klokantech Noto Sans Italic', and 'Klokantech Noto Sans Regular'.
297+
298+
299+
##### Font Weight
300+
301+
*New in 5.23*
302+
303+
You can specify a numeric font weight on `go.Scattermapbox` with `textfont.weight`.
304+
305+
```python
306+
import plotly.graph_objects as go
307+
308+
token = open(".mapbox_token").read() # you need your own token
309+
310+
fig = go.Figure(go.Scattermapbox(
311+
mode = "markers+text+lines",
312+
lon = [-75, -80, -50], lat = [45, 20, -20],
313+
marker = dict(size=20, symbol=["bus", "harbor", "airport"]),
314+
text = ["Bus", "Harbor", "airport"], textposition = "bottom right",
315+
textfont = dict(size=18, color="black", weight=900)
316+
))
317+
318+
fig.update_layout(
319+
mapbox = dict(
320+
accesstoken=token,
321+
style="outdoors", zoom=0.7),
322+
showlegend = False,)
323+
324+
fig.show()
325+
```
326+
268327
#### Reference
269328

270329
See [function reference for `px.(scatter_mapbox)`](https://plotly.com/python-api-reference/generated/plotly.express.scatter_mapbox) or https://plotly.com/python/reference/scattermapbox/ for more information and options!

doc/python/shapes.md

+68-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupyter:
66
extension: .md
77
format_name: markdown
88
format_version: '1.3'
9-
jupytext_version: 1.16.1
9+
jupytext_version: 1.16.3
1010
kernelspec:
1111
display_name: Python 3 (ipykernel)
1212
language: python
@@ -20,7 +20,7 @@ jupyter:
2020
name: python
2121
nbconvert_exporter: python
2222
pygments_lexer: ipython3
23-
version: 3.10.11
23+
version: 3.10.14
2424
plotly:
2525
description: How to make SVG shapes in python. Examples of lines, circle, rectangle,
2626
and path.
@@ -579,6 +579,72 @@ fig.update_layout(
579579
fig.show()
580580
```
581581

582+
#### Shifting Shapes on Categorical Axes
583+
584+
*New in 5.23*
585+
586+
When drawing shapes where `xref` or `yref` reference axes of type category or multicategory, you can shift `x0`, `x1`, `y0`, and `y1` away from the center of the category using `x0shift`, `x1shift`, `y0shift`, and `y1shift` by specifying a value between -1 and 1.
587+
588+
-1 is the center of the previous category, 0 is the center of the referenced category, and 1 is the center of the next category.
589+
590+
In the following example, the `x0` and `x1` values for both shapes reference category values on the x-axis.
591+
592+
In this example, the first shape:
593+
- Shifts `x0` half way between the center of category "Germany" and the center of the previous category by setting `x0shift=-0.5`
594+
- Shifts `x1`half way between the center of category "Germany" and the center of the next category by setting `x1shift=0.5`
595+
596+
The second shape:
597+
- Shifts `x0` back to the center of the previous category by setting `x0shift=-1`
598+
- Shifts `x1`forward to the center of the next category by setting `x1shift=1`
599+
600+
```python
601+
import plotly.graph_objects as go
602+
import plotly.express as px
603+
604+
df = px.data.gapminder().query("continent == 'Europe' and year == 1952")
605+
606+
fig = go.Figure(
607+
data=go.Bar(x=df["country"], y=df["lifeExp"], marker_color="LightSalmon"),
608+
layout=dict(
609+
shapes=[
610+
dict(
611+
type="rect",
612+
x0="Germany",
613+
y0=0,
614+
x1="Germany",
615+
y1=0.5,
616+
xref="x",
617+
yref="paper",
618+
x0shift=-0.5,
619+
x1shift=0.5,
620+
line=dict(color="LightGreen", width=4),
621+
),
622+
dict(
623+
type="rect",
624+
x0="Spain",
625+
y0=0,
626+
x1="Spain",
627+
y1=0.5,
628+
xref="x",
629+
yref="paper",
630+
x0shift=-1,
631+
x1shift=1,
632+
line=dict(color="MediumTurquoise", width=4),
633+
),
634+
]
635+
),
636+
)
637+
638+
fig.update_layout(
639+
title="GDP per Capita in Europe (1972)",
640+
xaxis_title="Country",
641+
yaxis_title="GDP per Capita",
642+
)
643+
644+
fig.show()
645+
646+
```
647+
582648
### Drawing shapes with a Mouse on Cartesian plots
583649

584650
_introduced in plotly 4.7_

0 commit comments

Comments
 (0)