I have created a SwatchLegend called mySwatchLegend. I have set LegendLayout to "Row" and LegendFunction to "Frame":
myLabelStyle = {FontFamily -> "Arial", 24};
mySwatchLegend = SwatchLegend[
{Red, Yellow,
Green, Blue, Purple},
{"series 1a", "series 1b",
"series 2a", "series 2b", "series 2c"},
LegendFunction -> "Frame",
LegendLayout -> "Row",
LegendMarkerSize -> 16,
LabelStyle -> myLabelStyle
]
I would like the last three legend items -- series 2a, series 2b, and series 2c -- to all be on the second line/row of the legend, instead of having series 2a dangling on the end of the legend's first line/row as it is now. How can I accomplish this?




