Skip to content

Commit 6637682

Browse files
authored
Merge pull request #4873 from rl-utility-man/patch-7
Adding an example of source lines or notes on the bottom of graphs
2 parents 75237dc + b3a3ead commit 6637682

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

doc/python/text-and-annotations.md

+60
Original file line numberDiff line numberDiff line change
@@ -782,6 +782,66 @@ fig.add_annotation(
782782

783783
fig.show()
784784
```
785+
### Specifying Source Lines or Figure Notes on the Bottom of a Figure
786+
787+
This example shows how to add a note about the data source or interpretation at the bottom of the figure. This example aligns the note in the bottom right corner using the title element and container coordinates and then uses an annotation to add a figure title. A near zero container coordinate is an easy and robust way to put text -- such as a source line or figure note -- at the bottom of a figure. It is easier to specify the bottom of the figure in container coordinates than using paper coordinates, since uncertainty about the size of legends and x-axis labels make the paper coordinate of the bottom of the figure uncertain. Making the y container coordinate very slightly positive avoids cutting off the descending strokes of letters like y, p, and q. Only the title command supports container coordinates, so this example re-purposes the title element to insert the note and re-purposes an annotation element for the title. The top of the figure is typically less cluttered and more predictable than the bottom of the figure, so an annotation with its bottom at a paper y-coordinate slightly greater than 1 is a reasonable title location on many graphs.
788+
789+
```python
790+
import plotly.express as px
791+
df = px.data.iris()
792+
fig.update_layout(
793+
title=dict(text="Note: this is the Plotly title element.",
794+
# keeping this title string short avoids getting the text cut off in small windows
795+
# if you need longer text, consider 1) embedding your graphic on a web page and
796+
# putting the note in the HTML to use the browser's automated word wrap,
797+
# 2) using this approach and also specifying a graph width that shows the whole title,
798+
# or 3) using <BR> tags to wrap the text onto multiple lines
799+
yref="container",
800+
y=0.005,
801+
# The "paper" x-coordinates lets us align this with either the right or left
802+
# edge of the plot region.
803+
# The code to align this flush with the right edge of the plot area is
804+
# predictable and simple.
805+
# Putting the title in the lower left corner, aligned with the left edge of the axis labeling would
806+
# require graph specific coordinate adjustments.
807+
xref="paper",
808+
xanchor="right",
809+
x=1,
810+
font=dict(size=12)),
811+
plot_bgcolor="white",
812+
813+
# We move the legend out of the right margin so the right-aligned note is
814+
# flush with the right most element of the graph.
815+
# Here we put the legend in a corner of the graph region
816+
# because it has consistent coordinates at all screen resolutions.
817+
legend=dict(
818+
yanchor="top",
819+
y=1,
820+
xanchor="right",
821+
x=1,
822+
borderwidth=1)
823+
)
824+
825+
# Insert a title by repurposing an annotation
826+
fig.add_annotation(
827+
yref="paper",
828+
yanchor="bottom",
829+
y=1.025, # y = 1 is the top of the plot area; the top is typically uncluttered, so placing
830+
# the bottom of the title slightly above the graph region works on a wide variety of graphs
831+
text="This title is a Plotly annotation",
832+
833+
# Center the title horizontally over the plot area
834+
xref="paper",
835+
xanchor="center",
836+
x=0.5,
837+
838+
showarrow=False,
839+
font=dict(size=18)
840+
)
841+
842+
fig.show()
843+
```
844+
785845

786846
### Customize Displayed Text with a Text Template
787847

0 commit comments

Comments
 (0)