# Plots: reducing subplot size

**URL:** https://discourse.julialang.org/t/plots-reducing-subplot-size/51407
**Category:** Visualization
**Created:** [December 7, 2020, 3:49pm UTC](https://discourse.julialang.org/t/plots-reducing-subplot-size/51407 "2020-12-07T15:49:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![HenriDeh](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/henrideh/32/8316_2.png) [@HenriDeh](https://discourse.julialang.org/u/HenriDeh)
#### Post date: [December 7, 2020, 3:49pm UTC](https://discourse.julialang.org/t/plots-reducing-subplot-size/51407/1 "2020-12-07T15:49:45Z")

</div>

Hi,

I’m making composed plots where the legend would be the same for each subplot. As such, I want only one legend for all plots and it would have to be next to the grid layout. At the moment I can only set `label = ""` for all but the rightmost subplot but this gives a squashed legend because the subplot is narrow.

I would like to know how I can make a subplot that contains only a centered legend. At the moment I can do

```julia
l = plot([], [[],[],[]], axis = false, ticks = false, grid = false, label = [" Label 1" " Label 2" " Label 3"], legend = :inside) 

```

But this is in the middle of a large blank square:

![image](https://global.discourse-cdn.com/julialang/original/3X/f/c/fc6fb4d6102661568b088d57f6f0918a1b101f9d.png)

Any suggestion ?
