Skip to content

Commit ca4fa05

Browse files
committed
add updated structure + more changes
1 parent df8e619 commit ca4fa05

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

doc/python/v6-changes.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jupyter:
2020
name: python
2121
nbconvert_exporter: python
2222
pygments_lexer: ipython3
23-
version: 3.9.16
23+
version: 3.11.10
2424
plotly:
2525
description: Guide to changes in version 6 of Plotly.py and how to migrate from
2626
version 5
@@ -39,14 +39,24 @@ This page outlines the changes in Plotly.py version 6 and cases where you may ne
3939
<!-- #region -->
4040
## Jupyter Notebook Support
4141

42+
Versions of Jupyter Notebook earlier than version 7 are no longer supported. To upgrade to the latest Jupyter Notebook:
43+
44+
```
45+
pip install notebook -upgrade
46+
```
47+
48+
## Processing NumPy and Pandas Series
49+
50+
Plotly.py now takes advantage of recent changes in how Plotly.js handles typed arrays for improved performance. See the [performance page](python/performance/) for more details.
51+
52+
4253
## Removed Attributes
4354

4455
The following attributes have been removed in Plotly.py 6.
4556

46-
### `layout.titlefont`
47-
48-
`layout.titlefont` as shown in the following example has been removed.
57+
### `titlefont`
4958

59+
The `titlefont` attribute, shown in the following example on `layout`, has been removed.
5060

5161
```python
5262
import plotly.graph_objects as go
@@ -92,9 +102,20 @@ fig = go.Figure(data=[trace], layout=layout)
92102
fig.show()
93103
```
94104

105+
### `titleoffset`
106+
107+
### `titleside`
108+
95109
## Removed Traces
96110

111+
The following traces have been removed.
97112

113+
### `heatmapgl`
98114

115+
### `pointcloud`
99116

100117
<!-- #endregion -->
118+
119+
```python
120+
121+
```

0 commit comments

Comments
 (0)