Skip to content

Commit 73fb620

Browse files
authored
use "bar chart" instead of "bars" for better seo
1 parent 8390f25 commit 73fb620

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/bar-charts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ fig.show()
331331

332332
Set `categoryorder` to `"category ascending"` or `"category descending"` for the alphanumerical order of the category names or `"total ascending"` or `"total descending"` for numerical order of values. [categoryorder](https://plot.ly/python/reference/#layout-xaxis-categoryorder) for more information. Note that sorting the bars by a particular trace isn't possible right now - it's only possible to sort by the total values. Of course, you can always sort your data _before_ plotting it if you need more customization.
333333

334-
This example orders the bars alphabetically with `categoryorder: 'category ascending'`
334+
This example orders the bar chart alphabetically with `categoryorder: 'category ascending'`
335335

336336
```python
337337
import plotly.graph_objects as go
@@ -359,7 +359,7 @@ fig.update_layout(barmode='stack', xaxis={'categoryorder':'array', 'categoryarra
359359
fig.show()
360360
```
361361

362-
This example orders the bars by descending value with `categoryorder: 'total descending'`
362+
This example orders the bar chart by descending value with `categoryorder: 'total descending'`
363363

364364
```python
365365
import plotly.graph_objects as go

0 commit comments

Comments
 (0)