Hi everyone,

I've searched through the forum for an answer to this specific question and couldn't find it, so posting here.

I would like to suppress the y-axis on my graph, but show a ytitle. Yscale(off) achieves the first goal, but then also prevents me from specifying the ytitle, as below:


Code:
    webuse citytemp, clear
    graph bar tempjan tempjuly, over(region) stack /// 
          yscale(off) ///
          ytitle("%")
Doesn't seem to be a hard fix, but after some tinkering can't figure it out. Thanks in advance for any insights on this!