Legends in Julia
How to configure and style the legend in Plotly with Julia.
Trace Types, Legends and Color Bars
[Traces] of most types can be optionally associated with a single legend item in the legend. Whether or not a given trace appears in the legend is controlled via the showlegend
attribute. Traces which are their own subplots (see above) do not support this, with the exception of traces of type pie
and funnelarea
for which every distinct color represented in the trace gets a separate legend item. Users may show or hide traces by clicking or double-clicking on their associated legend item. Traces that support legend items also support the legendgroup
attribute, and all traces with the same legend group are treated the same way during click/double-click interactions.
The fact that legend items are linked to traces means that when using [discrete color], a figure must have one trace per color in order to get a meaningful legend.
Traces which support [continuous color] can also be associated with color axes in the layout via the coloraxis
attribute. Multiple traces can be linked to the same color axis. Color axes have a legend-like component called color bars. Alternatively, color axes can be configured within the trace itself.
Legends with DataFrame
When plotting using a DataFrame, PlotlyJS functions will create one trace per animation frame for each unique combination of data values mapped to color
, symbol
, line_dash
, facet_row
and/or facet_column
. Traces' legendgroup
and showlegend
attributed are set such that only one legend item appears per unique combination of color
, symbol
and/or line_dash
. The legend title is automatically set, and can be overrided using the labels
argument as shown below.
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "tips")
plot(
df,
x=:total_bill,
y=:tip,
color=:sex,
symbol=:smoker,
facet_col=:time,
kind="scatter",
mode="markers",
labels=attr(sex="Gender", smoker="Smokes")
)
Legend Order
By default, Plotly lays out legend items in the order in which values appear in the underlying data. Every function also includes a category_orders
keyword argument which can be used to control [the order in which categorical axes are drawn], but beyond that can also control the order in which legend items appear, and [the order in which facets are laid out].
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "tips")
plot(
df,
x=:day,
y=:total_bill,
color=:smoker,
facet_col=:sex,
marker_symbol=:smoker,
kind="bar",
category_orders=attr(
day=["Thur", "Fri", "Sat", "Sun"],
smoker=["Yes", "No"],
sex=["Male", "Female"]
)
)
When using stacked bars, the bars are stacked from the bottom in the same order as they appear in the legend, so it can make sense to set layout.legend.traceorder
to "reversed"
to get the legend and stacks to match:
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "tips")
plot(
df,
x=:day,
y=:total_bill,
facet_col=:sex,
marker_symbol=:smoker,
color=:smoker,
kind="bar",
category_orders=attr(
day=["Thur", "Fri", "Sat", "Sun"],
smoker=["Yes", "No"],
sex=["Male", "Female"]
),
Layout(barmode="stacked", legend_traceorder="reversed")
)
When using specific trace methods rather than plot
, legend items will appear in the order that traces appear in the data
:
using PlotlyJS
trace1 = bar(name="first", x=["a", "b"], y=[1,2])
trace2 = bar(name="second", x=["a", "b"], y=[2,1])
trace3 = bar(name="third", x=["a", "b"], y=[1,2])
trace4 = bar(name="fourth", x=["a", "b"], y=[2,1])
plot([trace1, trace2, trace3, trace4])
The legendrank
attribute of a trace can be used to control its placement within the legend, without regard for its placement in the data
list.
The default legendrank
for traces is 1000 and ties are broken as described above, meaning that any trace can be pulled up to the top if it is the only one with a legend rank less than 1000 and pushed to the bottom if it is the only one with a rank greater than 1000.
using PlotlyJS
trace1 = bar(name="fourth", x=["a", "b"], y=[2,1], legendrank=4)
trace2 = bar(name="second", x=["a", "b"], y=[2,1], legendrank=2)
trace3 = bar(name="first", x=["a", "b"], y=[1,2], legendrank=1)
trace4 = bar(name="third", x=["a", "b"], y=[1,2], legendrank=3)
plot([trace1, trace2, trace3, trace4])
Showing and Hiding the Legend
By default the legend is displayed on Plotly charts with multiple traces, and this can be explicitly set with the layout.showlegend
attribute:
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "tips")
plot(
df,
x=:sex,
y=:total_bill,
color=:time,
kind="histogram",
Layout(
title="Total Bill by Sex, Colored by Time",
showlegend=false,
barmode="stack"
)
)
Legend Positioning
Legends have an anchor point, which can be set to a point within the legend using layout.legend.xanchor
and layout.legend.yanchor
. The coordinate of the anchor can be positioned with layout.legend.x
and layout.legend.y
in [paper coordinates]. Note that the plot margins will grow so as to accommodate the legend. The legend may also be placed within the plotting area.
using PlotlyJS, DataFrames, CSV
df = dataset(DataFrame, "gapminder")
df_2007 = df[df.year .== 2007,: ]
plot(
df_2007, x=:gdpPercap, y=:lifeExp, color=:continent,
marker=attr(
size=:pop,
sizemode="area",
sizeref=2 * maximum(df_2007.pop) / (45^2),
sizemin=4
),
kind="scatter",
mode="markers",
text=:country,
Layout(legend=attr(x=0, y=1,), xaxis_type="log")
)
Horizontal Legends
The layout.legend.orientation
attribute can be set to "h"
for a horizontal legend. Here we also position it above the plotting area.
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "gapminder")
df_2007 = df[df.year .== 2007,: ]
layout = Layout(
legend=attr(
x=1,
y=1.02,
yanchor="bottom",
xanchor="right",
orientation="h"
),
xaxis_type="log"
)
plot(
df_2007, x=:gdpPercap, y=:lifeExp, color=:continent,
marker=attr(
size=:pop,
sizemode="area",
sizeref=2 * maximum(df_2007.pop) / (45^2),
sizemin=4
),
kind="scatter",
mode="markers",
text=:country,
layout
)
Styling Legends
Legends support many styling options.
using PlotlyJS, CSV, DataFrames
df = dataset(DataFrame, "gapminder")
df_2007 = df[df.year .== 2007,: ]
layout = Layout(
legend=attr(
x=0,
y=1,
traceorder="reversed",
title_font_family="Times New Roman",
font=attr(
family="Courier",
size=12,
color="black"
),
bgcolor="LightSteelBlue",
bordercolor="Black",
borderwidth=2
),
xaxis_type="log"
)
plot(
df_2007, x=:gdpPercap, y=:lifeExp, color=:continent,
marker=attr(
size=:pop,
sizemode="area",
sizeref=2 * maximum(df_2007.pop) / (45^2),
sizemin=4
),
kind="scatter",
mode="markers",
text=:country,
layout
)
Legend Item Names
Legend items appear per trace, and the legend item name is taken from the trace's name
attribute.
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3, 4, 5],
y=[1, 2, 3, 4, 5],
name="Positive"
)
trace2 = scatter(
x=[1, 2, 3, 4, 5],
y=[5, 4, 3, 2, 1],
name="Negative"
)
plot([trace1, trace2])
Legend titles
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3, 4, 5],
y=[1, 2, 3, 4, 5],
name="Increasing"
)
trace2 = scatter(
x=[1, 2, 3, 4, 5],
y=[5, 4, 3, 2, 1],
name="Decreasing"
)
plot([trace1, trace2], Layout(legend_title_text="Trend"))
Hiding Legend Items
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3, 4, 5],
y=[1, 2, 3, 4, 5],
showlegend=false
)
trace2 = scatter(
x=[1, 2, 3, 4, 5],
y=[5, 4, 3, 2, 1],
)
plot([trace1, trace2], Layout(showlegend=true))
Hiding the Trace Initially
Traces have a visible
attribute. If set to legendonly
, the trace is hidden from the graph implicitly. Click on the name in the legend to display the hidden trace.
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3, 4, 5],
y=[1, 2, 3, 4, 5],
)
trace2 = scatter(
x=[1, 2, 3, 4, 5],
y=[5, 4, 3, 2, 1],
visible="legendonly"
)
plot([trace1, trace2])
Size of Legend Items
In this example itemsizing attribute determines the legend items symbols remain constant, regardless of how tiny/huge the bubbles would be in the graph.
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3, 4, 5],
y=[1, 2, 3, 4, 5],
mode="markers",
marker_size = 10
)
trace2 = scatter(
x=[1, 2, 3, 4, 5],
y=[5, 4, 3, 2, 1],
mode="markers",
marker_size=100
)
plot([trace1, trace2], Layout(legend_itemsizing="constant"))
Grouped Legend Items
Grouping legend items together by setting the legendgroup
attribute of traces causes their legend entries to be next to each other, and clicking on any legend entry in the group will show or hide the whole group. The legendgrouptitle
attribute can be used to give titles to groups.
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3],
y=[2, 1, 3],
legendgroup="group", # this can be any string, not just "group"
legendgrouptitle_text="First Group Title",
name="first legend group",
mode="markers",
marker=attr(color="Crimson", size=10)
)
trace2 = scatter(
x=[1, 2, 3],
y=[2, 2, 2],
legendgroup="group",
name="first legend group - average",
mode="lines",
line=attr(color="Crimson")
)
trace3 = scatter(
x=[1, 2, 3],
y=[4, 9, 2],
legendgroup="group2",
legendgrouptitle_text="Second Group Title",
name="second legend group",
mode="markers",
marker=attr(color="MediumPurple", size=10)
)
trace4 = scatter(
x=[1, 2, 3],
y=[5, 5, 5],
legendgroup="group2",
name="second legend group - average",
mode="lines",
line=attr(color="MediumPurple")
)
plot([trace1,trace2, trace3, trace4], Layout(title="Try Clicking on the Legend Items!"))
You can also hide entries in grouped legends, preserving the grouped show/hide behaviour.
using PlotlyJS
trace1 = scatter(
x=[1, 2, 3],
y=[2, 1, 3],
legendgroup="group", # this can be any string, not just "group"
legendgrouptitle_text="First Group Title",
name="first legend group",
mode="markers",
marker=attr(color="Crimson", size=10)
)
trace2 = scatter(
x=[1, 2, 3],
y=[2, 2, 2],
legendgroup="group",
name="first legend group - average",
mode="lines",
line=attr(color="Crimson"),
showlegend=false
)
trace3 = scatter(
x=[1, 2, 3],
y=[4, 9, 2],
legendgroup="group2",
legendgrouptitle_text="Second Group Title",
name="second legend group",
mode="markers",
marker=attr(color="MediumPurple", size=10)
)
trace4 = scatter(
x=[1, 2, 3],
y=[5, 5, 5],
legendgroup="group2",
name="second legend group - average",
mode="lines",
line=attr(color="MediumPurple"),
showlegend=false
)
plot([trace1,trace2, trace3, trace4], Layout(title="Try Clicking on the Legend Items!"))
Reference
See https://plotly.com/julia/reference/layout/#layout-legend for more information!