I am trying to get bold ylabels in a time series graph. I had success only in xlabel , example:
Code:
use "http://www.princeton.edu/~otorres/Stata/date.dta", clear
gen date4=_n
gen normal= rnormal(5000, 400)
replace date2= "{bf:" + date2 + "}"
ssc install labutil
labmask date4, values(date2)
line normal date4, xlab(1(500)4500, valuelabel angle(45)) sort
Array I tried to use the same steps to get bold ylabels but I failed
Code:
gen str_normal= string(normal)
replace str_normal= "{bf:" + str_normal + "}"
labmask normal, values(str_normal)
may not label non-integers
r(198);Regards
0 Response to Graph with bold ylabels
Post a Comment