You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python/axes.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,16 +33,16 @@ jupyter:
33
33
thumbnail: thumbnail/axes.png
34
34
---
35
35
36
-
This tutorial explain how to set the properties of [2-dimensional Cartesian axes](figure-structure.md#2d-cartesian-trace-types-and-subplots), namely [`go.layout.XAxis`](/reference/layout/xaxis.md) and [`go.layout.YAxis`](/reference/layout/xaxis.md).
36
+
This tutorial explain how to set the properties of [2-dimensional Cartesian axes](figure-structure.md#2d-cartesian-trace-types-and-subplots), namely [`go.layout.XAxis`](../reference/plotly/graph_objects/layout/_xaxis.md) and [`go.layout.YAxis`](../reference/plotly/graph_objects/layout/_yaxis.md).
37
37
38
38
Other kinds of subplots and axes are described in other tutorials:
39
39
40
-
-[3D axes](3d-axes.md) The axis object is [`go.layout.Scene`](/reference/layout/scene.md)
41
-
-[Polar axes](polar-chart.md). The axis object is [`go.layout.Polar`](/reference/layout/polar.md)
42
-
-[Ternary axes](ternary-plots.md). The axis object is [`go.layout.Ternary`](/reference/layout/ternary.md)
43
-
-[Geo axes](map-configuration.md). The axis object is [`go.layout.Geo`](/reference/layout/geo.md)
44
-
-[Map axes](tile-map-layers.md). The axis object is [`go.layout.Map`](/reference/layout/map.md)
45
-
-[Color axes](colorscales.md). The axis object is [`go.layout.Coloraxis`](/reference/layout/coloraxis.md).
40
+
-[3D axes](3d-axes.md) The axis object is [`go.layout.Scene`](../reference/plotly/graph_objects/layout/_scene.md)
41
+
-[Polar axes](polar-chart.md). The axis object is [`go.layout.Polar`](../reference/plotly/graph_objects/layout/_polar.md)
42
+
-[Ternary axes](ternary-plots.md). The axis object is [`go.layout.Ternary`](../reference/plotly/graph_objects/layout/_ternary.md)
43
+
-[Geo axes](map-configuration.md). The axis object is [`go.layout.Geo`](../reference/plotly/graph_objects/layout/_geo.md)
44
+
-[Map axes](tile-map-layers.md). The axis object is [`go.layout.Map`](../reference/plotly/graph_objects/layout/_map.md)
45
+
-[Color axes](colorscales.md). The axis object is [`go.layout.Coloraxis`](../reference/plotly/graph_objects/layout/_coloraxis.md).
46
46
47
47
**See also** the tutorials on [facet plots](facet-plots.md), [subplots](subplots.md) and [multiple axes](multiple-axes.md).
Copy file name to clipboardExpand all lines: doc/python/colorscales.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ fig.show()
226
226
227
227
### Hiding or Customizing the Plotly Express Color Bar
228
228
229
-
Plotly Express binds all traces to [`layout.coloraxis`](/reference/layout/coloraxis.md), rather than using trace-specific color axes. This means that the color bar can configured there, for example it can be hidden:
229
+
Plotly Express binds all traces to [`layout.coloraxis`](../reference/plotly/graph_objects/layout/_coloraxis.md), rather than using trace-specific color axes. This means that the color bar can configured there, for example it can be hidden:
Copy file name to clipboardExpand all lines: doc/python/plotly-express.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ The Plotly Express API in general offers the following features:
71
71
***A single entry point into `plotly`**: just `import plotly.express as px` and get access to [all the plotting functions](https://plotly.com/python-api-reference/plotly.express.html), plus [built-in demo datasets under `px.data`](https://plotly.com/python-api-reference/generated/plotly.data.html#module-plotly.data) and [built-in color scales and sequences under `px.color`](https://plotly.com/python-api-reference/generated/plotly.colors.html#module-plotly.colors). Every PX function returns a `plotly.graph_objects.Figure` object, so you can edit it using all the same methods like [`update_layout` and `add_trace`](https://plotly.com/python/creating-and-updating-figures/#updating-figures).
72
72
***Sensible, Overridable Defaults**: PX functions will infer sensible defaults wherever possible, and will always let you override them.
73
73
***Flexible Input Formats**: PX functions [accept input in a variety of formats](px-arguments.md), from `list`s and `dict`s to [long-form or wide-form `DataFrame`s](wide-form.md) to [`numpy` arrays and `xarrays`](imshow.md) to [GeoPandas `GeoDataFrames`](maps.md).
74
-
***Automatic Trace and Layout configuration**: PX functions will create one [trace](figure-structure) per animation frame for each unique combination of data values mapped to discrete color, symbol, line-dash, facet-row and/or facet-column. Traces' [`legendgroup` and `showlegend` attributes](https://plotly.com/python/legend.md) are set such that only one legend item appears per unique combination of discrete color, symbol and/or line-dash. Traces are automatically linked to a correctly-configured [subplot of the appropriate type](../figure-structure).
74
+
***Automatic Trace and Layout configuration**: PX functions will create one [trace](figure-structure.md) per animation frame for each unique combination of data values mapped to discrete color, symbol, line-dash, facet-row and/or facet-column. Traces' [`legendgroup` and `showlegend` attributes](https://plotly.com/python/legend.md) are set such that only one legend item appears per unique combination of discrete color, symbol and/or line-dash. Traces are automatically linked to a correctly-configured [subplot of the appropriate type](figure-structure.md).
75
75
***Automatic Figure Labelling**: PX functions [label axes, legends and colorbars](https://plotly.com/python/figure-labels/) based in the input `DataFrame` or `xarray`, and provide [extra control with the `labels` argument](styling-plotly-express.md).
76
76
***Automatic Hover Labels**: PX functions populate the hover-label using the labels mentioned above, and provide [extra control with the `hover_name` and `hover_data` arguments](hover-text-and-formatting.md).
77
77
***Styling Control**: PX functions [read styling information from the default figure template](styling-plotly-express.md), and support commonly-needed [cosmetic controls like `category_orders` and `color_discrete_map`](styling-plotly-express.md) to precisely control categorical variables.
0 commit comments