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: notebooks/creating-updating-figures.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -469,13 +469,14 @@ There are also `for_each_xaxis` and `for_each_yaxis` methods that are analogous
469
469
###Chaining figure operations
470
470
With the exception of property assignment, all of the figure update operations described in this section are methods that return a reference to the figure being modified. This makes it possible the chain multiple figure modification operations together into a single expression.
471
471
472
-
Here is an example of a chained expression that creates a faceted scatter plot with OLS trend lines using plotly express,adds a title using`update_layout`, disables vertical grid lines using`update_xaxes`, updates the width and dash pattern of the trend lines using`update_traces`, and then displays the figure using`show`.
472
+
Here is an example of a chained expression that creates a faceted scatter plot with OLS trend lines using plotly express,sets the title font size using`update_layout`, disables vertical grid lines using`update_xaxes`, updates the width and dash pattern of the trend lines using`update_traces`, and then displays the figure using`show`.