Dear All,
I generate sever graphs, which I like to combine in one. Each graph displays its legend (which is actually common to all of them). When I combine graphs, the legend is moved upon the figure. I am just wondering if there is any chance to use only one legend, which I put at the end of the combined graph.
I tried to remove the legend from the loop and put it in the graph combine, but it does not work.I tried to change the position of lagend, but whichever position I choose, the result is not different.
Any idea?
Thanks in advance,
Dario
I generate sever graphs, which I like to combine in one. Each graph displays its legend (which is actually common to all of them). When I combine graphs, the legend is moved upon the figure. I am just wondering if there is any chance to use only one legend, which I put at the end of the combined graph.
Code:
foreach v of local regressors{ grmap msp_resi1_`v' if NUTS_ID!="ES70" & NUTS_ID!="PT30" & NUTS_ID!="PT20", fcolor(blue blue*0.2 red*0.2 red) clmethod(custom) clb(0 1 2 3 4) legend(order( 5 "High-High" 4 "High-low" 3 "Low-High" 2 "Low-Low") position(3)) title(`v') name(LISA`v') } graph combine LISA1 LISA2 LISA3 LISA4 LISA5 LISA6 LISA7
Any idea?
Thanks in advance,
Dario
Comment