Something is awry with my graphics and I don't know how to restore default settings.
I want to use the
scheme. I ensured it is available
and set as the default scheme
but when I make a plot
it comes out looking like a cross between lean1 and lean2, with a different font:

I get the same result even after I reset graphics using
and run
What could be causing this and how can I reset to factory defaults?
I want to use the
Code:
lean1
Code:
. graph query, schemes Available schemes are s2color see help scheme_s2color s2mono see help scheme_s2mono s2manual see help scheme_s2manual s2gmanual see help scheme_s2gmanual s2gcolor see help scheme_s2gcolor s1color see help scheme_s1color s1mono see help scheme_s1mono s1rcolor see help scheme_s1rcolor s1manual see help scheme_s1manual sj see help scheme_sj economist see help scheme_economist s2color8 see help scheme_s2color8 lean1 see help scheme_lean1 lean2 see help scheme_lean2
Code:
query graph ------------------------------------------------------------------------------------------------------------------- Graphics settings set graphics on set scheme lean1 set printcolor automatic may be automatic, asis, gs1, gs2, gs3 set copycolor automatic may be automatic, asis, gs1, gs2, gs3
Code:
sysuse auto, clear tw scatter price mpg, by(foreign)
I get the same result even after I reset graphics using
Code:
. set_defaults graphics -> set graphics on -> set scheme s2color -> set printcolor automatic -> set copycolor automatic (preferences reset)
Code:
sysuse auto, clear tw scatter price mpg, by(foreign) scheme(lean1)
Comment