I want to change the color of all the axes to gs15, but the right y-axis color is not changing. Please suggest what I can do.
Code:
twoway bar Minor_Hurr_Count year, barwidth(1) fcolor("225 115 102") lc("225 115 102") yaxis(1) ///
|| bar Major_Hurr_Count year, barwidth(1) fcolor("141 14 14") lc("141 14 14") yaxis(1) ///
|| line Hurr_Cost_Billions year, yaxis(2) lcolor("0 87 231") lwidth(0.5) ///
ytitle("Hurricane Count", axis(1)) ///
ytitle("Cost in Billions ($)", axis(2)) ///
xtitle(" ") ///
graphregion(color(white)) ///
ylabel(, nogrid) ///
xscale(lc(gs15)) yscale(lc(gs15)) ///
plotregion(lstyle(solid) lcolor(gs15)) ///
plotregion(fcolor(white) lcolor(gs15)) ///
legend(order(1 "Minor Hurricane" 2 "Major Hurricane" 3 "Estimated Damage") ///
ring(3) row(1) size(small) nobox region(lstyle(none)))
Code:
twoway bar Minor_Hurr_Count year, barwidth(1) fcolor("225 115 102") lc("225 115 102") yaxis(1) ///
|| bar Major_Hurr_Count year, barwidth(1) fcolor("141 14 14") lc("141 14 14") yaxis(1) ///
|| line Hurr_Cost_Billions year, yaxis(2) lcolor("0 87 231") lwidth(0.5) ///
ytitle("Hurricane Count", axis(1)) ///
ytitle("Cost in Billions ($)", axis(2)) ///
xtitle(" ") ///
graphregion(color(white)) ///
ylabel(, nogrid) ///
xscale(lc(gs15)) yscale(lc(gs15)) ///
plotregion(lstyle(solid) lcolor(gs15)) ///
plotregion(fcolor(white) lcolor(gs15)) ///
legend(order(1 "Minor Hurricane" 2 "Major Hurricane" 3 "Estimated Damage") ///
ring(3) row(1) size(small) nobox region(lstyle(none)))
Comment