Skip to content

Commit fd557e4

Browse files
Merge pull request #3217 from plotly/doc-prod
Doc prod
2 parents b03f0db + 73291c0 commit fd557e4

File tree

5 files changed

+6
-94
lines changed

5 files changed

+6
-94
lines changed

Diff for: doc/python/configuration-options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ fig.show(config=config)
230230
To delete buttons from the modebar, pass an array of strings containing the names of the buttons you want to remove to the `modeBarButtonsToRemove` attribute in the figure's configuration dictionary. Note that different chart types have different default modebars. The following is a list of all the modebar buttons and the chart types they are associated with:
231231

232232
- **2D**: `zoom2d`, `pan2d`, `select2d`, `lasso2d`, `zoomIn2d`, `zoomOut2d`, `autoScale2d`, `resetScale2d`
233-
- **3D**: `zoom3d`, `pan3d`, `rbitRotation`, `tableRotation`, `handleDrag3d`, `resetCameraDefault3d`, `resetCameraLastSave3d`, `hoverClosest3d`
233+
- **3D**: `zoom3d`, `pan3d`, `orbitRotation`, `tableRotation`, `handleDrag3d`, `resetCameraDefault3d`, `resetCameraLastSave3d`, `hoverClosest3d`
234234
- **Cartesian**: `hoverClosestCartesian`, `hoverCompareCartesian`
235235
- **Geo**: `zoomInGeo`, `zoomOutGeo`, `resetGeo`, `hoverClosestGeo`
236236
- **Other**: `hoverClosestGl2d`, `hoverClosestPie`, `toggleHover`, `resetViews`, `toImage: sendDataToCloud`, `toggleSpikelines`, `resetViewMapbox`

Diff for: doc/python/creating-and-updating-figures.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ import plotly.graph_objects as go
321321

322322
fig = go.Figure(
323323
data=[go.Scatter(y=[1, 3, 2], line=dict(color="crimson"))],
324-
layout=dict(title=dict(text="A Graph Object Figure With Magic Underscore Notation"))
324+
layout=dict(title=dict(text="A Graph Objects Figure Without Magic Underscore Notation"))
325325
)
326326

327327
fig.show()
@@ -334,7 +334,7 @@ import plotly.graph_objects as go
334334

335335
fig = go.Figure(
336336
data=[go.Scatter(y=[1, 3, 2], line_color="crimson")],
337-
layout_title_text="Another Graph Object Figure With Magic Underscore Notation"
337+
layout_title_text="A Graph Objects Figure With Magic Underscore Notation"
338338
)
339339

340340
fig.show()

Diff for: doc/python/figure-structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ The following trace types are their own subplots and support a domain attribute:
197197
* [`parcoords`](/python/parallel-coordinates-plot/) and [`parcats`](/python/parallel-categories-diagram/): continuous and categorical multidimensional figures with [parallel coordinates](/python/parallel-coordinates-plot/) and [parallel sets](/python/parallel-categories-diagram/)
198198
* [`sankey`](/python/sankey-diagram/): [flow diagrams](/python/sankey-diagram/)
199199
* [`table`](/python/table/): [text-based tables](/python/table/)
200-
* [`indicator`](http://indicators/): big numbers, [gauges](/python/gauge-charts/), and [bullet charts](/python/bullet-charts/)
200+
* [`indicator`](/python/indicator/): big numbers, [gauges](/python/gauge-charts/), and [bullet charts](/python/bullet-charts/)
201201

202202
### Carpet Trace Types and Subplots
203203

Diff for: doc/python/tick-formatting.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If `"array"`, the placement of the ticks is set via `tickvals` and the tick text
6464
```python
6565
import plotly.graph_objects as go
6666

67-
go.Figure(go.Scatter(
67+
fig = go.Figure(go.Scatter(
6868
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
6969
y = [28.8, 28.5, 37, 56.8, 69.7, 79.7, 78.5, 77.8, 74.1, 62.6, 45.3, 39.9]
7070
))
@@ -101,7 +101,7 @@ For more formatting types, see: https://github.com/d3/d3-format/blob/master/READ
101101
```python
102102
import plotly.graph_objects as go
103103

104-
go.Figure(go.Scatter(
104+
fig = go.Figure(go.Scatter(
105105
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
106106
y = [28.8, 28.5, 37, 56.8, 69.7, 79.7, 78.5, 77.8, 74.1, 62.6, 45.3, 39.9]
107107
))

Diff for: doc/unconverted/python/LaTeX.md

-88
This file was deleted.

0 commit comments

Comments
 (0)