Skip to content

Commit b644fb5

Browse files
removing odd non-breaking-spaces from headers
1 parent 79dbd8f commit b644fb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/python/bar-charts.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fig.show()
5050
data_canada
5151
```
5252

53-
### Customize bar chart with Plotly Express
53+
### Customize bar chart with Plotly Express
5454

5555
The bar plot can be customized using keyword arguments.
5656

@@ -121,7 +121,7 @@ fig = go.Figure(data=[
121121
go.Bar(name='SF Zoo', x=animals, y=[20, 14, 23]),
122122
go.Bar(name='LA Zoo', x=animals, y=[12, 18, 29])
123123
])
124-
# Change the bar mode
124+
# Change the bar mode
125125
fig.update_layout(barmode='group')
126126
fig.show()
127127
```
@@ -213,7 +213,7 @@ fig.add_trace(go.Bar(
213213
marker_color='lightsalmon'
214214
))
215215

216-
# Here we modify the tickangle of the xaxis, resulting in rotated labels.
216+
# Here we modify the tickangle of the xaxis, resulting in rotated labels.
217217
fig.update_layout(barmode='group', xaxis_tickangle=-45)
218218
fig.show()
219219
```

0 commit comments

Comments
 (0)