Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Change color of subtitle box - coefplot

    Hello,

    I am combing two coefplots on one graph. I have been successful in changing the background color to white but I would like the subtitle of each graph to not have the light blue box around it. I have tried a host of commands and it has not worked. Here is the most current command that I tried. Any suggestions would be greatly appreciated.
    Code:
    coefplot (faculty_`var'0, label(Commercial)) (faculty_`var'1, label(Social)), bylabel(Faculty) ///
    || student_`var'0 student_`var'1, bylabel(Students) || ///
    , vertical recast(bar) barwidth(0.3) fcolor(*.5) ///
    ciopts(recast(rcap)) citop levels(90 95) ///
    byopts(graphregion(col(white)) bgcol(white))
    graph export `var'_fig.png, replace

  • #2
    Add the following option to your command:

    Code:
    subtitle(, bcolor(white))
    Last edited by Trevor Andrew; 28 Aug 2021, 21:44.

    Comment

    Working...
    X