What is the argument to change the legend title?

In Makie documentation I have seen this way to put a label of the legend:

f[1, 2] = Legend(f, ax, “Trig Functions”, framevisible = false)

But is there a way to assing a legend title using some kwarg (argument) like a “framevisable” in this example? I need it to develop a software.

There’s no attribute for it because a legend can have multiple groups, each with its own title. The version with the positional arg is just one shortcut to create the necessary datastructure in the background for the single-group case. You can feed an observable to that though, which you should be able to change.