From a panel data set I am graphing time series for a high number of countries, by country.
For each country, the graph code is as follows:
twoway (tsline spread if Cntry == 1) (tsline bidask if Cntry == 1, yaxis(3)) (tsline debt if Cntry == 1, yaxis(2) name(country1) title(Austria))
I need to alter several features of the graphs, such as
- change font of title to medium large
- change font of legends of X and my 3 Y Axis to small
- change number of ticks on my X-axis
- change angle of X-Axis legend
Instead of altering the code for each of my ids, is there a way to modify an official Stata scheme directly?
help schemes
. The strategy should be to create your own scheme using one of the built-in schemes as a base. – Roberto Ferrer